Пример #1
0
        public void power_clean_exercise_should_correctly_calculate_the_weight_distance_moved()
        {
            var pc = new PowerClean(_dummyPerson);

              Assert.AreEqual(4.10M, Math.Round(pc.WeightDistanceMoved, 2));
        }
Пример #2
0
        public void power_clean_exercise_should_correctly_calculate_the_body_weight_work_being_done()
        {
            var pc = new PowerClean(_dummyPerson);

              Assert.AreEqual(65.69M, Math.Round(pc.BodyWeightWorkDone, 2));
        }