| 4468 | } |
| 4469 | |
| 4470 | std::string Approx::toString() const { |
| 4471 | ReusableStringStream rss; |
| 4472 | rss << "Approx( " << ::Catch::Detail::stringify(m_value) << " )"; |
| 4473 | return rss.str(); |
| 4474 | } |
| 4475 | |
| 4476 | bool Approx::equalityComparisonImpl(const double other) const { |
| 4477 | // First try with fixed margin, then compute margin based on epsilon, scale and Approx's value |
no test coverage detected