public void TestGatewayAccountIdIsEqualTo() { var PaymentInstrument = new AchPaymentInstrument(); PaymentInstrument.GatewayAccountId = "123123"; Assert.AreEqual("123123", PaymentInstrument.GatewayAccountId); }
public void TestBankAccountIdIsEqualTo() { var PaymentInstrument = new AchPaymentInstrument(); PaymentInstrument.BankAccountId = "test2"; Assert.AreEqual("test2", PaymentInstrument.BankAccountId); }
public void TestGatewayAccountIdDefaultIsEqualTo() { var PaymentInstrument = new AchPaymentInstrument(); Assert.IsNull(PaymentInstrument.GatewayAccountId); }
public void TestMethodIsEqualTo() { var PaymentInstrument = new AchPaymentInstrument(); Assert.AreEqual("ach", PaymentInstrument.Method); }
public void TestConstructIsInstanceOfEntity() { var PaymentInstrument = new AchPaymentInstrument(); Assert.IsInstanceOf <AchPaymentInstrument>(PaymentInstrument); }