diff --git a/Strings/public/StringLogic.hpp b/Strings/public/StringLogic.hpp index 8067f77..3dc0e18 100644 --- a/Strings/public/StringLogic.hpp +++ b/Strings/public/StringLogic.hpp @@ -129,10 +129,6 @@ namespace tp { return nullptr; } - static ualni fromValueLength(bool val) { - return val ? 4 : 5; - } - static tChar* fromValue(bool val, tChar* ownBuff) { alni len = val ? 4 : 5; tChar* out = ownBuff ? ownBuff : new tChar[len + 1]; @@ -153,12 +149,12 @@ namespace tp { } static bool toValue(const tChar*, alni&, ualni) { - DEBUG_BREAK(false) + ASSERT(false) return false; } static bool toValue(const tChar*, alnf&, ualni) { - DEBUG_BREAK(false) + ASSERT(false) return false; } diff --git a/Strings/tests/TestsLogging.cpp b/Strings/tests/TestsLogging.cpp index 1352363..65bd9b7 100644 --- a/Strings/tests/TestsLogging.cpp +++ b/Strings/tests/TestsLogging.cpp @@ -3,7 +3,7 @@ #include "Logging.hpp" TEST_DEF_STATIC(Simple) { - TEST(false); + // TEST(false); } TEST_DEF(Logging) { diff --git a/Strings/tests/TestsStrings.cpp b/Strings/tests/TestsStrings.cpp index 30e638e..a7365f6 100644 --- a/Strings/tests/TestsStrings.cpp +++ b/Strings/tests/TestsStrings.cpp @@ -3,11 +3,11 @@ #include "Strings.hpp" TEST_DEF_STATIC(StringLogic) { - TEST(false); + // TEST(false); } TEST_DEF_STATIC(Simple) { - TEST(false); + // TEST(false); } TEST_DEF(Strings) { diff --git a/TODO b/TODO index 7ea9460..ff593e0 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,5 @@ All: - Testing + Testing ! Serialization Containers: