static void Main(string[] args)
        {
            Console.WriteLine("Welcome to Animal feeding Calculatore");
            Console.WriteLine("Press enter to get Total cost involved to feed all the animals at zoo.");
            Console.ReadLine();

            PerDayCalculator pc = new PerDayCalculator();
            double           d  = pc.CalculatePerDayRate();

            Console.WriteLine("Total cost for the animals currently at the zoo : " + d);
            Console.ReadLine();
        }
Esempio n. 2
0
 public void FailedCalculatePerDayRate()
 {
     Assert.AreEqual(100, _perDayCalculator.CalculatePerDayRate(), "Incorrect Value");
 }