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