| 582 | |
| 583 | |
| 584 | std::string Approx::toString() const { |
| 585 | ReusableStringStream rss; |
| 586 | rss << "Approx( " << ::Catch::Detail::stringify( m_value ) << " )"; |
| 587 | return rss.str(); |
| 588 | } |
| 589 | |
| 590 | bool Approx::equalityComparisonImpl(const double other) const { |
| 591 | // First try with fixed margin, then compute margin based on epsilon, scale and Approx's value |
no test coverage detected