Exemple #1
0
        public void TestGatewayAccountIdIsEqualTo()
        {
            var PaymentInstrument = new AchPaymentInstrument();

            PaymentInstrument.GatewayAccountId = "123123";
            Assert.AreEqual("123123", PaymentInstrument.GatewayAccountId);
        }
Exemple #2
0
        public void TestBankAccountIdIsEqualTo()
        {
            var PaymentInstrument = new AchPaymentInstrument();

            PaymentInstrument.BankAccountId = "test2";
            Assert.AreEqual("test2", PaymentInstrument.BankAccountId);
        }
Exemple #3
0
        public void TestGatewayAccountIdDefaultIsEqualTo()
        {
            var PaymentInstrument = new AchPaymentInstrument();

            Assert.IsNull(PaymentInstrument.GatewayAccountId);
        }
Exemple #4
0
        public void TestMethodIsEqualTo()
        {
            var PaymentInstrument = new AchPaymentInstrument();

            Assert.AreEqual("ach", PaymentInstrument.Method);
        }
Exemple #5
0
        public void TestConstructIsInstanceOfEntity()
        {
            var PaymentInstrument = new AchPaymentInstrument();

            Assert.IsInstanceOf <AchPaymentInstrument>(PaymentInstrument);
        }