public void Given_Valid_Account_Deatils_BacsPayment_Should_Process()
 {
     _backs   = new BacsPayment();
     _account = new Account {
         AccountNumber = "1223456", AllowedPaymentSchemes = DeveloperTest.Types.AllowedPaymentSchemes.Bacs
     };
     Assert.AreEqual(true, _backs.isAllowedPayementScheme(_account));
 }
Example #2
0
 public void Setup()
 {
     _target = new BacsPayment(Bootstrapper.Container.GetInstance <IAccountFlag>());
 }