8 lines
103 B
C++
8 lines
103 B
C++
#define CATCH_CONFIG_MAIN
|
|
#include "catch.hpp"
|
|
|
|
TEST_CASE("Dummy test")
|
|
{
|
|
REQUIRE(true == true);
|
|
}
|