Esempio n. 1
0
        public void ShouldGetExpectedReboundDuration()
        {
            var data = new ReboundDurationProblemData
            {
                Damage = 50
            };

            var result = _calculator.ReboundDuration(data);

            //Assert.That(result, Is.EqualTo())
        }
Esempio n. 2
0
 public int ReboundDuration(ReboundDurationProblemData data)
 {
     throw new NotImplementedException(
         "Waiting on response from SpaceJam on this.  Not sure if the KH formula is good.");
     //return (int) Math.Floor(data.Damage*15/8 + 7.5);
 }