public void SolveFirstPuzzle() { var sut = new Launcher(REAL_TARGET_AREA); sut.CalculateBestShoot(); Assert.Equal(4278, sut.HighestPointAbleToReach); }
public void FindHighestPointCorrectly() { var sut = new Launcher(SAMPLE_TARGET_AREA); sut.CalculateBestShoot(); Assert.Equal(45, sut.HighestPointAbleToReach); }