#include <catch2/catch.hpp>

auto const is_comp6771 = true;
auto const is_about_cxx = true;
auto const is_about_german = false;

TEST_CASE()
{
    CHECK((is_comp6771 and is_about_cxx));
    CHECK((is_about_german or is_about_cxx));
    CHECK(not is_about_german);
}

// You can use classic && or || as well
