| 418 | } |
| 419 | |
| 420 | void UtestShell::assertCstrNoCaseContains(const char* expected, const char* actual, const char* text, const char* fileName, size_t lineNumber) |
| 421 | { |
| 422 | getTestResult()->countCheck(); |
| 423 | if (actual == NULLPTR && expected == NULLPTR) return; |
| 424 | if (actual == NULLPTR || expected == NULLPTR) |
| 425 | failWith(ContainsFailure(this, fileName, lineNumber, expected, actual, text)); |
| 426 | if (!SimpleString(actual).containsNoCase(expected)) |
| 427 | failWith(ContainsFailure(this, fileName, lineNumber, expected, actual, text)); |
| 428 | } |
| 429 | |
| 430 | void UtestShell::assertLongsEqual(long expected, long actual, const char* text, const char* fileName, size_t lineNumber, const TestTerminator& testTerminator) |
| 431 | { |
nothing calls this directly
no test coverage detected