This is a project that students of Learn C++ the hardway checkout to confirm their setup is correct, and also doubles as a quick start for a basic C++ game project start.
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.
 
 
 
 
 
cpp-starter-project/tests/example.cpp

6 lines
124 B

#include <catch2/catch_test_macros.hpp>
TEST_CASE("sample test", "[sample]") {
int test = 100;
REQUIRE(test == 100);
}