public void TestGatewayAccountIdIsEqualTo() { var PaymentInstrument = new PayPalPaymentInstrument(); PaymentInstrument.GatewayAccountId = "123123"; Assert.AreEqual("123123", PaymentInstrument.GatewayAccountId); }
public void TestPayPalAccountIdIsEqualTo() { var PaymentInstrument = new PayPalPaymentInstrument(); PaymentInstrument.PayPalAccountId = "test2"; Assert.AreEqual("test2", PaymentInstrument.PayPalAccountId); }
public void TestGatewayAccountIdDefaultIsEqualTo() { var PaymentInstrument = new PayPalPaymentInstrument(); Assert.IsNull(PaymentInstrument.GatewayAccountId); }
public void TestMethodIsEqualTo() { var PaymentInstrument = new PayPalPaymentInstrument(); Assert.AreEqual("pay-pal", PaymentInstrument.Method); }
public void TestConstructIsInstanceOfEntity() { var PaymentInstrument = new PayPalPaymentInstrument(); Assert.IsInstanceOf <PayPalPaymentInstrument>(PaymentInstrument); }