From 7f09d61eb878df5a341d51656b2657dfa73e2a0b Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 26 Jul 2025 21:57:00 +0200 Subject: [PATCH] tests: Remove tests for functions that no longer exist --- tests/helpers/source/utils.cpp | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/tests/helpers/source/utils.cpp b/tests/helpers/source/utils.cpp index c20e0b576..c8565e728 100644 --- a/tests/helpers/source/utils.cpp +++ b/tests/helpers/source/utils.cpp @@ -4,24 +4,6 @@ using namespace std::literals::string_literals; -TEST_SEQUENCE("SplitStringAtChar") { - const std::string TestString = "Hello|World|ABCD|Test|"; - const std::vector TestSplitVector = { "Hello", "World", "ABCD", "Test", "" }; - - TEST_ASSERT(hex::splitString(TestString, "|") == TestSplitVector); - - TEST_SUCCESS(); -}; - -TEST_SEQUENCE("SplitStringAtString") { - const std::string TestString = "Hello|DELIM|World|DELIM|ABCD|DELIM|Test|DELIM|"; - const std::vector TestSplitVector = { "Hello", "World", "ABCD", "Test", "" }; - - TEST_ASSERT(hex::splitString(TestString, "|DELIM|") == TestSplitVector); - - TEST_SUCCESS(); -}; - TEST_SEQUENCE("ExtractBits") { TEST_ASSERT(hex::extract(11, 4, 0xAABBU) == 0xAB); TEST_ASSERT(hex::extract(15, 0, 0xAABBU) == 0xAABB);