Exemplo n.º 1
0
        public void eventTotal()
        {
            OutingRepo outingRepo = new OutingRepo();

            outingRepo.SeedList();

            double actual   = outingRepo.CalcCombCosttotal();
            double expected = 1714.5d;

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 2
0
        public void costTestType()
        {
            OutingRepo outingRepo = new OutingRepo();

            outingRepo.SeedList();

            double actual   = outingRepo.OutingCostByType(EventType.Golf);
            double expected = 814.5;

            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 3
0
 public void Run()
 {
     _outingRepo.SeedList();
     RunMenu();
 }