7 lines
123 B
C++
7 lines
123 B
C++
#define CATCH_CONFIG_MAIN
|
|
#include <catch_main.hpp>
|
|
|
|
TEST_CASE("Is example succesful", "[example]") {
|
|
REQUIRE(true);
|
|
}
|