public void IsNotWithinAllowedDifference()
 {
     Assert.False(TrainGame.IsWithinAllowedDifference(6, 5));
 }
 public void IsWithinAllowedDifference()
 {
     Assert.True(TrainGame.IsWithinAllowedDifference(5, 5));
 }