コード例 #1
0
ファイル: Burpee.cs プロジェクト: keroger2k/PowerOut
 public Burpee(Person person)
 {
     this._person = person;
       this._squat = new Squat(_person);
       this._pushup = new Pushup(_person);
 }
コード例 #2
0
ファイル: ExerciseTests.cs プロジェクト: keroger2k/PowerOut
        public void squat_exercise_should_correctly_calculate_the_body_weight_work_being_done()
        {
            var squat = new Squat(_dummyPerson);

              Assert.AreEqual(223.34M, Math.Round(squat.BodyWeightWorkDone, 2));
        }