summaryrefslogtreecommitdiffstats
path: root/Test/CMakeLists.txt
diff options
context:
space:
mode:
authorLeonetienne <leonetienne@hotmail.de>2022-02-12 20:07:48 +0100
committerLeonetienne <leonetienne@hotmail.de>2022-02-12 20:07:48 +0100
commitab1a3672c3392cb2eaf21d020fd09e698e96e255 (patch)
tree51a91ee90a81d58028647adaffc597ffdbca2310 /Test/CMakeLists.txt
parentcf397f3af828bf1f87392a5a1c349284589d25af (diff)
Added tests for char tools
Diffstat (limited to 'Test/CMakeLists.txt')
-rw-r--r--Test/CMakeLists.txt20
1 files changed, 16 insertions, 4 deletions
diff --git a/Test/CMakeLists.txt b/Test/CMakeLists.txt
index 31793bb..d4d3ea1 100644
--- a/Test/CMakeLists.txt
+++ b/Test/CMakeLists.txt
@@ -9,10 +9,22 @@ link_directories(../Src/cmake-build-debug)
add_executable(Test
Catch2.h
main.cpp
- Lower.cpp
- Upper.cpp
- Replace_Char.cpp
- Replace_String.cpp
+
+ # StringTools-Tests
+ String__Lower.cpp
+ String__Upper.cpp
+ String__Replace_Char.cpp
+ String__Replace_String.cpp
+
+ # CharTools-Tests
+ Char__IsVowel.cpp
+ Char__IsLetter.cpp
+ Char__IsDigit.cpp
+ Char__IsUpper.cpp
+ Char__IsLower.cpp
+ Char__MakeUpper.cpp
+ Char__MakeLower.cpp
+ Char__CopySign.cpp
)
target_link_libraries(Test StringTools)