6 lines
114 B
C++
6 lines
114 B
C++
#define CATCH_CONFIG_MAIN
|
|
#include <catch2/catch.hpp>
|
|
|
|
TEST_CASE( "1 eq 1", "[test]" ) {
|
|
REQUIRE( 1 == 1 );
|
|
}
|