| 398 | } |
| 399 | |
| 400 | void UtestShell::assertCstrNoCaseEqual(const char* expected, const char* actual, const char* text, const char* fileName, size_t lineNumber) |
| 401 | { |
| 402 | getTestResult()->countCheck(); |
| 403 | if (actual == NULLPTR && expected == NULLPTR) return; |
| 404 | if (actual == NULLPTR || expected == NULLPTR) |
| 405 | failWith(StringEqualNoCaseFailure(this, fileName, lineNumber, expected, actual, text)); |
| 406 | if (!SimpleString(expected).equalsNoCase(actual)) |
| 407 | failWith(StringEqualNoCaseFailure(this, fileName, lineNumber, expected, actual, text)); |
| 408 | } |
| 409 | |
| 410 | void UtestShell::assertCstrContains(const char* expected, const char* actual, const char* text, const char* fileName, size_t lineNumber) |
| 411 | { |
nothing calls this directly
no test coverage detected