8 lines
100 B
C++
8 lines
100 B
C++
|
#define CATCH_CONFIG_MAIN
|
||
|
#include <catch2/catch_all.hpp>
|
||
|
|
||
|
TEST_CASE("dumb")
|
||
|
{
|
||
|
REQUIRE(true);
|
||
|
}
|