olm/lib/doctest/examples/all_features/no_failures.cpp
Hubert Chathi 8475061136 switch to doctest for unit testing
thanks to Nico Werner, who did most of the porting work
2021-12-22 13:45:33 -05:00

13 lines
338 B
C++

#include <doctest/doctest.h>
TEST_CASE("no checks") {}
TEST_CASE("simple check") {
CHECK(1 == 1);
}
TEST_SUITE("some suite") {
TEST_CASE("fails - and its allowed" * doctest::may_fail()) { FAIL(""); }
}
TEST_CASE("should fail and no output" * doctest::should_fail() * doctest::no_breaks() * doctest::no_output()) { FAIL(""); }