You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
12345678910 |
- #include <catch2/catch.hpp>
-
- #include <testlib/calc.hpp>
-
- TEST_CASE("A simple test case") {
- CHECK_FALSE(false);
- CHECK(2 == 2);
- CHECK(1 != 4);
- CHECK(stuff::calculate(3, 11) == 42);
- }
|