MCPcopy Create free account
hub / github.com/cpputest/cpputest / assertUnsignedLongLongsEqual

Method assertUnsignedLongLongsEqual

src/CppUTest/Utest.cpp:457–468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

455}
456
457void 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
470void UtestShell::assertSignedBytesEqual(signed char expected, signed char actual, const char* text, const char *fileName, size_t lineNumber, const TestTerminator& testTerminator)
471{

Callers 1

Calls 3

countCheckMethod · 0.45

Tested by

no test coverage detected