diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 09d5e364..8747bcb4 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -286,6 +286,7 @@ add_executable(etl_tests test_to_u32string.cpp test_to_u8string.cpp test_to_wstring.cpp + test_tuple.cpp test_type_def.cpp test_type_list.cpp test_type_lookup.cpp diff --git a/test/syntax_check/CMakeLists.txt b/test/syntax_check/CMakeLists.txt index 0dab0a41..5eeb8ee2 100644 --- a/test/syntax_check/CMakeLists.txt +++ b/test/syntax_check/CMakeLists.txt @@ -303,6 +303,7 @@ target_sources(tests PRIVATE to_u32string.h.t.cpp to_u8string.h.t.cpp to_wstring.h.t.cpp + tuple.h.t.cpp type_def.h.t.cpp type_lookup.h.t.cpp type_select.h.t.cpp diff --git a/test/syntax_check/tuple.h.t.cpp b/test/syntax_check/tuple.h.t.cpp new file mode 100644 index 00000000..ed8e8d64 --- /dev/null +++ b/test/syntax_check/tuple.h.t.cpp @@ -0,0 +1,29 @@ +/****************************************************************************** +The MIT License(MIT) + +Embedded Template Library. +https://github.com/ETLCPP/etl +https://www.etlcpp.com + +Copyright(c) 2025 John Wellbelove + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files(the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and / or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions : + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +******************************************************************************/ + +#include diff --git a/test/vs2022/etl.vcxproj b/test/vs2022/etl.vcxproj index fde32d91..bfebb2b5 100644 --- a/test/vs2022/etl.vcxproj +++ b/test/vs2022/etl.vcxproj @@ -3186,6 +3186,8 @@ + + @@ -3336,6 +3338,7 @@ + @@ -7847,6 +7850,22 @@ true true + + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true true @@ -9457,6 +9476,7 @@ + diff --git a/test/vs2022/etl.vcxproj.filters b/test/vs2022/etl.vcxproj.filters index 322cefa3..a0bc794b 100644 --- a/test/vs2022/etl.vcxproj.filters +++ b/test/vs2022/etl.vcxproj.filters @@ -1443,6 +1443,15 @@ ETL\Utilities + + ETL\Containers + + + ETL\Private + + + ETL\Private + @@ -3449,6 +3458,9 @@ Tests\Types + + Tests\Containers +