Exemple #1
0
        private async void PaymentSourceECL_TestPaymentSourceECL()
        {
            var paymentSourceEdit = await PaymentSourceECL.NewPaymentSourceECL();

            Assert.NotNull(paymentSourceEdit);
            Assert.IsType <PaymentSourceECL>(paymentSourceEdit);
        }
Exemple #2
0
        private async void PaymentSourceECL_TestGetPaymentSourceECL()
        {
            var childData = MockDb.PaymentSources;

            var listToTest = await PaymentSourceECL.GetPaymentSourceECL(childData);

            Assert.NotNull(listToTest);
            Assert.Equal(3, listToTest.Count);
        }