More fixes for Assert.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -14,4 +14,11 @@ TEST_CASE("Assert throws if false with message", "[Utilities]") {
|
||||
Catch::Matchers::Equals("ASSERTION FAILED: [AssertTests.cpp (3)] \"wrapperExpression\""));
|
||||
}
|
||||
|
||||
TEST_CASE("Multiple asserts", "[Utilities]") {
|
||||
Assert(true);
|
||||
Assert(true);
|
||||
Assert(true);
|
||||
}
|
||||
|
||||
|
||||
TEST_CASE("AssertNotNull throws if nullptr", "[Utilities]") { REQUIRE_THROWS(TestWrapperNotNull(nullptr)); }
|
||||
|
||||
Reference in New Issue
Block a user