I have an algorithm that converts a value between celsius and farhrenheit. To test that it works with a wide range of values I'm using NUnit's TestCases like so:
[TestCase( 0, Result = -17.778 )]
[TestCase( 50, Result = 10 )]
public double FahrenheitToCelsius(double val) {
return (val - 32) / 1.8;
}
The problem is that the first TestCase fails because it tests for an exact match.
One solution that I have found is to do something like this:
[TestCase( 0, -17.778 )]
[TestCase( 50, 10 )]
public void FahrenheitToCelsius2(double val, double expected) {
double result = (val - 32) / 1.8;
Assert.AreEqual( expected, result, 0.005 );
}
But I'm not too happy with it. My question is:
Can a tolerance for the result be defined in the TestCase?
Update:
To clarify, I'm looking for something along the lines of:
[TestCase( 0, Result = 1.1, Tolerance = 0.05 )]
Add another parameter to the test case: