Helper function for *_STREQ on wide strings.
| 1544 | |
| 1545 | // Helper function for *_STREQ on wide strings. |
| 1546 | AssertionResult CmpHelperSTREQ(const char* expected_expression, |
| 1547 | const char* actual_expression, |
| 1548 | const wchar_t* expected, |
| 1549 | const wchar_t* actual) { |
| 1550 | if (String::WideCStringEquals(expected, actual)) { |
| 1551 | return AssertionSuccess(); |
| 1552 | } |
| 1553 | |
| 1554 | return EqFailure(expected_expression, |
| 1555 | actual_expression, |
| 1556 | PrintToString(expected), |
| 1557 | PrintToString(actual), |
| 1558 | false); |
| 1559 | } |
| 1560 | |
| 1561 | // Helper function for *_STRNE on wide strings. |
| 1562 | AssertionResult CmpHelperSTRNE(const char* s1_expression, |
no test coverage detected