bigsnitch/tests/generic_tests.cpp

7 lines
114 B
C++
Raw Permalink Normal View History

2020-09-04 08:33:33 +00:00
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
TEST_CASE( "1 eq 1", "[test]" ) {
REQUIRE( 1 == 1 );
2021-03-20 21:56:03 +00:00
}