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