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
  1. #include <catch2/catch.hpp>
  2. #include <testlib/calc.hpp>
  3. TEST_CASE("A simple test case") {
  4. CHECK_FALSE(false);
  5. CHECK(2 == 2);
  6. CHECK(1 != 4);
  7. CHECK(stuff::calculate(3, 11) == 42);
  8. }