diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/main.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/main.cpp b/tests/main.cpp index c076e14..41ef45d 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -2,7 +2,6 @@ #include <string.h> #include "../include/NetUtils.hpp" #include "../plugins/utils/EpisodeNameParser.hpp" -#include "../plugins/Matrix.hpp" #include "../generated/Emoji.hpp" #define assert_fail(str) do { fprintf(stderr, "Assert failed on line %d, reason: %s\n", __LINE__, (str)); exit(1); } while(0) @@ -113,11 +112,5 @@ int main() { assert_equals(emoji_sequence_length, 4); assert_equals(emoji_sequence_byte_length, 13); - const std::string formatted_text = "<font color=\"#789922\">\n<p>>amazin<br>>asd</p>\n</font>\n<p>feaf</p>\n"; - const std::string qm_text = formatted_text_to_qm_text(formatted_text.c_str(), formatted_text.size()); - for(char c : qm_text) { - fprintf(stderr, "%c(%02x) ", c, *(uint8_t*)&c); - } - return 0; } |