Added tests dir

This commit is contained in:
Bob Polis
2021-12-20 17:43:21 +01:00
parent ea3099fb8f
commit a86ca3fb39
2 changed files with 59 additions and 0 deletions

8
tests/src/main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#define BOOST_TEST_MODULE My Test
#define BOOST_TEST_DYN_LINK
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE(first_test)
{
BOOST_TEST(1 == 1);
}