parent
aa1b90554f
commit
638a414961
|
@ -17,4 +17,4 @@
|
||||||
#define Assert(expr)
|
#define Assert(expr)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define AssertNotNull(value) Assert(value != nullptr)
|
#define AssertNotNull(value) Assert(value != nullptr);
|
|
@ -20,5 +20,4 @@ TEST_CASE("Multiple asserts", "[Utilities]") {
|
||||||
Assert(true);
|
Assert(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
TEST_CASE("AssertNotNull throws if nullptr", "[Utilities]") { REQUIRE_THROWS(TestWrapperNotNull(nullptr)); }
|
TEST_CASE("AssertNotNull throws if nullptr", "[Utilities]") { REQUIRE_THROWS(TestWrapperNotNull(nullptr)); }
|
||||||
|
|
Loading…
Reference in New Issue