public void RetrieveShipsFromAPI_ExpectShipToMakeZeroStops() { double expected = 0; Starship starship = new Starship("TestStarship", 1000); double actual = starship.CalcTripStops(500); Assert.That(actual, Is.EqualTo(expected)); }