Asserts that val1 is less than, or almost equal to, val2. Fails otherwise. In particular, it fails if either val1 or val2 is NaN.
| 2919 | // Asserts that val1 is less than, or almost equal to, val2. Fails |
| 2920 | // otherwise. In particular, it fails if either val1 or val2 is NaN. |
| 2921 | AssertionResult DoubleLE(const char* expr1, const char* expr2, |
| 2922 | double val1, double val2) { |
| 2923 | return internal::FloatingPointLE<double>(expr1, expr2, val1, val2); |
| 2924 | } |
| 2925 | |
| 2926 | namespace internal { |
| 2927 |
nothing calls this directly
no outgoing calls
no test coverage detected