Esempio n. 1
0
        public void TestSavePaymentInfo()
        {
            PaymentInfo paymentInfo = new PaymentInfo
            {
                BSB           = "this is the bsb",
                AccountName   = "account name is here",
                AccountNumber = "what's the number",
                Reference     = "take reference",
                Amount        = 1123.45
            };
            TextSaver saver = new TextSaver();

            BpActionResult result = saver.SavePaymentInfo(paymentInfo);

            Assert.AreEqual(true, result.Success);
        }