Basic string tests, plus fix for StringFormat returning a std::string that was just very subtley malformed.

This commit is contained in:
KimLS
2014-08-24 16:26:51 -07:00
parent b36cc3ab08
commit 412835d7fa
4 changed files with 46 additions and 3 deletions
+2
View File
@@ -26,6 +26,7 @@
#include "fixed_memory_variable_test.h"
#include "atobool_test.h"
#include "hextoi_32_64_test.h"
#include "string_util_test.h"
int main() {
try {
@@ -38,6 +39,7 @@ int main() {
tests.add(new FixedMemoryVariableHashTest());
tests.add(new atoboolTest());
tests.add(new hextoi_32_64_Test());
tests.add(new StringUtilTest());
tests.run(*output, true);
} catch(...) {
return -1;