Helper function for *_STREQ on wide strings.
| 3361 | |
| 3362 | // Helper function for *_STREQ on wide strings. |
| 3363 | AssertionResult CmpHelperSTREQ(const char* lhs_expression, |
| 3364 | const char* rhs_expression, |
| 3365 | const wchar_t* lhs, |
| 3366 | const wchar_t* rhs) { |
| 3367 | if (String::WideCStringEquals(lhs, rhs)) { |
| 3368 | return AssertionSuccess(); |
| 3369 | } |
| 3370 | |
| 3371 | return EqFailure(lhs_expression, |
| 3372 | rhs_expression, |
| 3373 | PrintToString(lhs), |
| 3374 | PrintToString(rhs), |
| 3375 | false); |
| 3376 | } |
| 3377 | |
| 3378 | // Helper function for *_STRNE on wide strings. |
| 3379 | AssertionResult CmpHelperSTRNE(const char* s1_expression, |
no test coverage detected