tests renamed
This commit is contained in:
parent
be9c951d02
commit
af72567bf7
1 changed files with 6 additions and 6 deletions
|
@ -1,9 +1,9 @@
|
||||||
find_package(Boost COMPONENTS filesystem unit_test_framework REQUIRED)
|
find_package(Boost COMPONENTS filesystem unit_test_framework REQUIRED)
|
||||||
|
|
||||||
add_executable(sellertest test_seller.cpp)
|
add_executable(test_seller test_seller.cpp)
|
||||||
target_link_libraries(sellertest core Boost::boost Boost::filesystem Boost::unit_test_framework)
|
target_link_libraries(test_seller core Boost::unit_test_framework)
|
||||||
add_test(Seller ${CMAKE_BINARY_DIR}/bin/sellertest)
|
add_test(Seller ${CMAKE_BINARY_DIR}/bin/test_seller)
|
||||||
|
|
||||||
add_executable(databasetest test_database.cpp)
|
add_executable(test_database test_database.cpp)
|
||||||
target_link_libraries(databasetest core Boost::boost Boost::filesystem Boost::unit_test_framework)
|
target_link_libraries(test_database core Boost::filesystem Boost::unit_test_framework)
|
||||||
add_test(Database ${CMAKE_BINARY_DIR}/bin/databasetest)
|
add_test(Database ${CMAKE_BINARY_DIR}/bin/test_database)
|
||||||
|
|
Loading…
Reference in a new issue