public void eventTotal() { OutingRepo outingRepo = new OutingRepo(); outingRepo.SeedList(); double actual = outingRepo.CalcCombCosttotal(); double expected = 1714.5d; Assert.AreEqual(expected, actual); }
public void costTestType() { OutingRepo outingRepo = new OutingRepo(); outingRepo.SeedList(); double actual = outingRepo.OutingCostByType(EventType.Golf); double expected = 814.5; Assert.AreEqual(expected, actual); }
public void Run() { _outingRepo.SeedList(); RunMenu(); }