| 2686 | } |
| 2687 | |
| 2688 | AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT |
| 2689 | if (FAILED(hr)) { |
| 2690 | return AssertionSuccess(); |
| 2691 | } |
| 2692 | return HRESULTFailureHelper(expr, "fails", hr); |
| 2693 | } |
| 2694 | |
| 2695 | #endif // GTEST_OS_WINDOWS |
| 2696 |
nothing calls this directly
no test coverage detected