Remove old testing

This commit is contained in:
IlushaShurupov 2023-07-15 11:11:55 +03:00
parent c75cb9fb48
commit 4c9691e192
4 changed files with 6 additions and 10 deletions

View file

@ -129,10 +129,6 @@ namespace tp {
return nullptr; return nullptr;
} }
static ualni fromValueLength(bool val) {
return val ? 4 : 5;
}
static tChar* fromValue(bool val, tChar* ownBuff) { static tChar* fromValue(bool val, tChar* ownBuff) {
alni len = val ? 4 : 5; alni len = val ? 4 : 5;
tChar* out = ownBuff ? ownBuff : new tChar[len + 1]; tChar* out = ownBuff ? ownBuff : new tChar[len + 1];
@ -153,12 +149,12 @@ namespace tp {
} }
static bool toValue(const tChar*, alni&, ualni) { static bool toValue(const tChar*, alni&, ualni) {
DEBUG_BREAK(false) ASSERT(false)
return false; return false;
} }
static bool toValue(const tChar*, alnf&, ualni) { static bool toValue(const tChar*, alnf&, ualni) {
DEBUG_BREAK(false) ASSERT(false)
return false; return false;
} }

View file

@ -3,7 +3,7 @@
#include "Logging.hpp" #include "Logging.hpp"
TEST_DEF_STATIC(Simple) { TEST_DEF_STATIC(Simple) {
TEST(false); // TEST(false);
} }
TEST_DEF(Logging) { TEST_DEF(Logging) {

View file

@ -3,11 +3,11 @@
#include "Strings.hpp" #include "Strings.hpp"
TEST_DEF_STATIC(StringLogic) { TEST_DEF_STATIC(StringLogic) {
TEST(false); // TEST(false);
} }
TEST_DEF_STATIC(Simple) { TEST_DEF_STATIC(Simple) {
TEST(false); // TEST(false);
} }
TEST_DEF(Strings) { TEST_DEF(Strings) {

2
TODO
View file

@ -1,5 +1,5 @@
All: All:
Testing Testing !
Serialization Serialization
Containers: Containers: