Ejemplo n.º 1
0
        public void ExistsActivityPaymentFail()
        {
            SetUp();
            ActivityPayment      newActPay = new ActivityPayment();
            ActivityPaymentLogic logic     = new ActivityPaymentLogic();

            Assert.IsFalse(logic.Exists(newActPay));
        }
Ejemplo n.º 2
0
        public void AddActivityPaymentSuccess()
        {
            SetUp();
            ActivityPayment      newActPay = TestActivityPayment();
            ActivityPaymentLogic logic     = new ActivityPaymentLogic();

            logic.Add(newActPay);
            Assert.IsTrue(logic.Exists(newActPay));
        }