TypeTest included in CMakeLists

This commit is contained in:
lganzzzo 2018-10-17 10:47:02 +03:00
parent 8d4a91f97d
commit 714197b794
2 changed files with 5 additions and 0 deletions

View File

@ -245,6 +245,8 @@ if(OATPP_BUILD_TESTS)
test/core/base/memory/PerfTest.hpp
test/core/base/RegRuleTest.cpp
test/core/base/RegRuleTest.hpp
test/core/data/mapping/type/TypeTest.cpp
test/core/data/mapping/type/TypeTest.hpp
test/encoding/UnicodeTest.cpp
test/encoding/UnicodeTest.hpp
test/parser/json/mapping/DeserializerTest.cpp

View File

@ -1,3 +1,5 @@
#include "oatpp/test/core/data/mapping/type/TypeTest.hpp"
#include "oatpp/test/core/base/collection/LinkedListTest.hpp"
#include "oatpp/test/core/base/memory/MemoryPoolTest.hpp"
#include "oatpp/test/core/base/memory/PerfTest.hpp"
@ -34,6 +36,7 @@ void runTests() {
//OATPP_RUN_TEST(oatpp::test::memory::MemoryPoolTest);
//OATPP_RUN_TEST(oatpp::test::memory::PerfTest);
//OATPP_RUN_TEST(oatpp::test::encoding::UnicodeTest);
OATPP_RUN_TEST(oatpp::test::core::data::mapping::type::TypeTest);
OATPP_RUN_TEST(oatpp::test::parser::json::mapping::DeserializerTest);
OATPP_RUN_TEST(oatpp::test::parser::json::mapping::DTOMapperPerfTest);
OATPP_RUN_TEST(oatpp::test::parser::json::mapping::DTOMapperTest);