| 442 | } |
| 443 | |
| 444 | void UtestShell::assertLongLongsEqual(cpputest_longlong expected, cpputest_longlong actual, const char* text, const char* fileName, size_t lineNumber, const TestTerminator& testTerminator) |
| 445 | { |
| 446 | getTestResult()->countCheck(); |
| 447 | #ifdef CPPUTEST_USE_LONG_LONG |
| 448 | if (expected != actual) |
| 449 | failWith(LongLongsEqualFailure(this, fileName, lineNumber, expected, actual, text), testTerminator); |
| 450 | #else |
| 451 | (void)expected; |
| 452 | (void)actual; |
| 453 | failWith(FeatureUnsupportedFailure(this, fileName, lineNumber, "CPPUTEST_USE_LONG_LONG", text), testTerminator); |
| 454 | #endif |
| 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 | { |
no test coverage detected