tc::pair_map

This commit is contained in:
David Allemang
2022-09-12 15:58:47 -04:00
parent 88f1c5dbf4
commit 35ea10b6ff
5 changed files with 564 additions and 0 deletions

13
tc/test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
add_executable(grouptests grouptest.cpp)
target_link_libraries(grouptests PUBLIC tc)
add_test(NAME GroupIterateRef COMMAND grouptests iterate_ref)
set_tests_properties(GroupIterateRef PROPERTIES TIMEOUT 30)
add_test(NAME GroupIterateConst COMMAND grouptests iterate_const)
set_tests_properties(GroupIterateConst PROPERTIES TIMEOUT 30)
add_test(NAME GroupIterate COMMAND grouptests iterate)
set_tests_properties(GroupIterate PROPERTIES TIMEOUT 30)
add_test(NAME GroupView COMMAND grouptests view)
set_tests_properties(GroupView PROPERTIES TIMEOUT 30)
add_custom_target(alltests DEPENDS grouptests)