Exemplo n.º 1
0
        public void Points_WhenUnder24Seconds_Then25Points(double timeInSeconds, int shouldBePoints, Heat heat)
        {
            heat.HeatTime = timeInSeconds;

            var points = heat.Points();

            points.ShouldBe(shouldBePoints);
        }