bigsnitch/tests/generic_tests.cpp
Tim Blume 600d7146d3 foo
2021-03-20 22:56:03 +01:00

6 lines
114 B
C++

#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
TEST_CASE( "1 eq 1", "[test]" ) {
REQUIRE( 1 == 1 );
}