Re-enabled unit-tests, updated catch2, started loader test
This commit is contained in:
parent
5c6ed8191b
commit
271344dd6b
@ -12,4 +12,4 @@ include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|||||||
conan_basic_setup()
|
conan_basic_setup()
|
||||||
|
|
||||||
add_subdirectory(source)
|
add_subdirectory(source)
|
||||||
#add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
qt/5.12.0@bincrafters/stable
|
qt/5.12.0@bincrafters/stable
|
||||||
protobuf/3.6.1@bincrafters/stable
|
protobuf/3.6.1@bincrafters/stable
|
||||||
protoc_installer/3.6.1@bincrafters/stable
|
protoc_installer/3.6.1@bincrafters/stable
|
||||||
catch2/2.4.2@bincrafters/stable
|
catch2/2.5.0@bincrafters/stable
|
||||||
|
|
||||||
[generators]
|
[generators]
|
||||||
cmake
|
cmake
|
||||||
|
@ -7,6 +7,7 @@ add_executable(${PROJECT_NAME}
|
|||||||
main.cpp
|
main.cpp
|
||||||
dummy.cpp
|
dummy.cpp
|
||||||
Age.cpp
|
Age.cpp
|
||||||
|
loadfile.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
6
test/loadfile.cpp
Normal file
6
test/loadfile.cpp
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#include <catch2/catch.hpp>
|
||||||
|
|
||||||
|
TEST_CASE("blah")
|
||||||
|
{
|
||||||
|
REQUIRE(true);
|
||||||
|
}
|
Reference in New Issue
Block a user