forked from mirror/doctest
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
338 B
C++
14 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(""); }
|