| 455 | } |
| 456 | |
| 457 | void UtestShell::assertUnsignedLongLongsEqual(cpputest_ulonglong expected, cpputest_ulonglong actual, const char* text, const char* fileName, size_t lineNumber, const TestTerminator& testTerminator) |
| 458 | { |
| 459 | getTestResult()->countCheck(); |
| 460 | #ifdef CPPUTEST_USE_LONG_LONG |
| 461 | if (expected != actual) |
| 462 | failWith(UnsignedLongLongsEqualFailure(this, fileName, lineNumber, expected, actual, text), testTerminator); |
| 463 | #else |
| 464 | (void)expected; |
| 465 | (void)actual; |
| 466 | failWith(FeatureUnsupportedFailure(this, fileName, lineNumber, "CPPUTEST_USE_LONG_LONG", text), testTerminator); |
| 467 | #endif |
| 468 | } |
| 469 | |
| 470 | void UtestShell::assertSignedBytesEqual(signed char expected, signed char actual, const char* text, const char *fileName, size_t lineNumber, const TestTerminator& testTerminator) |
| 471 | { |
no test coverage detected