Example #1
0
        public void TestMethod1()
        {
            Outings outings = new Outings();

            _outingRepo = new OutingsRepository();


            _outingRepo.AddProduct(outings);

            int expected = 1;
            int actual   = _outingRepo.VeiwEvents().Count;

            Assert.AreEqual(expected, actual);
        }