added initial test case (does not compile!)

This commit is contained in:
Martin Brodbeck 2018-07-09 16:40:22 +02:00
parent 96113653e7
commit fee508fb96
3 changed files with 20 additions and 1 deletions

8
test/CMakeLists.txt Normal file
View file

@ -0,0 +1,8 @@
enable_testing()
find_package(Boost COMPONENTS unit_test_framework REQUIRED)
set(TEST_SOURCES test_seller.cpp)
add_executable(testsuite ${TEST_SOURCES})
target_link_libraries(testsuite Boost::unit_test_framework)