Arbutils/tests/AssertTests.cpp

32 lines
937 B
C++
Raw Normal View History

#include "../extern/doctest.hpp"
2020-03-22 10:14:47 +00:00
#include "../src/Assert.hpp"
2020-03-22 11:05:16 +00:00
void TestWrapper(bool wrapperExpression) { Assert(wrapperExpression) }
2020-03-22 11:20:39 +00:00
void TestWrapperNotNull(void* value) { AssertNotNull(value) }
2020-03-22 10:14:47 +00:00
TEST_CASE("Assert succeeds if true") { REQUIRE_NOTHROW(TestWrapper(true)); }
2020-03-22 10:14:47 +00:00
TEST_CASE("Assert throws if false") { REQUIRE_THROWS(TestWrapper(false)); }
2020-03-22 10:14:47 +00:00
TEST_CASE("Assert throws if false with message") {
try {
TestWrapper(false);
2020-08-15 12:54:19 +00:00
} catch (const ArbUt::Exception& e) {
REQUIRE(strcmp(e.what(), "ASSERTION FAILED: [AssertTests.cpp (3)] \"wrapperExpression\"") == 0);
return;
}
throw ArbUt::Exception("Didn't throw.");
2020-03-22 10:14:47 +00:00
}
2020-03-22 10:41:55 +00:00
TEST_CASE("Multiple asserts") {
2020-03-22 11:20:39 +00:00
Assert(true)
Assert(true)
Assert(true)
2020-03-22 11:02:02 +00:00
}
TEST_CASE("AssertNotNull throws if nullptr") { REQUIRE_THROWS(TestWrapperNotNull(nullptr)); }
TEST_CASE("Assert for each") {
auto i = {10, 500, 2300, 454};
AssertForEach(i, item > 0)
}