| 42 | { |
| 43 | |
| 44 | std::string GetErrorMessage(const std::string & operation, float expected, float actual) |
| 45 | { |
| 46 | std::ostringstream oss; |
| 47 | oss << "Output differs on " << operation << " : " |
| 48 | << "expected: " << expected << " != " << "actual: " << actual; |
| 49 | return oss.str(); |
| 50 | } |
| 51 | |
| 52 | bool IsInfinity(float floatToTest) |
| 53 | { |
no outgoing calls
no test coverage detected