bigsnitch/tests/generic_tests.cpp

8 lines
141 B
C++
Raw Normal View History

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