adapted to new project hierarchy

This commit is contained in:
Bob Polis
2020-11-10 22:07:12 +01:00
parent a85eb6b01b
commit 2494f4c5eb
5 changed files with 98 additions and 21 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);
}