public void ParseFahrenheitToCelsius_WhenCalled_ReturnsTemperatureInCelsius(string fahrenheit, string expectedResult, int decimalPlaces) { Assert.AreEqual(expectedResult, TemperatureConverter.ParseFahrenheitToCelsius(fahrenheit, decimalPlaces)); }
public void ParseFahrenheitToCelsius_WhenCalledWithNotParseableArgument_ThrowsFormatException(string temperatureInFahrenheit) { Assert.Throws <FormatException>(() => TemperatureConverter.ParseFahrenheitToCelsius(temperatureInFahrenheit)); }