Example #1
0
        public void TestFitbyteConstructor()
        {
            string code = "";

            try
            {
                code = File.ReadAllText("Fitbyte.cs");
            }
            catch
            {
                Console.WriteLine("Your file is not there yet!");
            }
            Fitbyte Fitbyte = new Fitbyte(20, 80);

            Assert.AreEqual(Fitbyte.GetType(), typeof(Fitbyte), "The Fitbyte should be of Type Fitbyte!");
        }
Example #2
0
        public void TestAnotherRandomFitbyte()
        {
            string code = "";

            try
            {
                code = File.ReadAllText("Fitbyte.cs");
            }
            catch
            {
                Console.WriteLine("Your file is not there yet!");
            }
            Random  rnd     = new Random();
            int     rand1   = rnd.Next(1, 100);
            int     rand2   = rnd.Next(25, 200);
            Fitbyte Fitbyte = new Fitbyte(rand1, rand2);
            double  rand3   = rnd.NextDouble();
            double  result  = (206.3 - (0.711 * rand1) - rand2) * rand3 + rand2;

            Assert.AreEqual(result, Fitbyte.TargetHeartRate(rand3), "Called new Fitbyte({0}, {1})", rand1, rand2);
        }