Tests for hextoi, hextoi64, atobool

const hextoi / hextoi64 / atobool. null check for each. tests for each.
This commit is contained in:
Arthur Ice
2014-03-13 14:45:54 -07:00
parent 39abb4f50c
commit c239964427
6 changed files with 337 additions and 6 deletions
+4
View File
@@ -24,6 +24,8 @@
#include "ipc_mutex_test.h"
#include "fixed_memory_test.h"
#include "fixed_memory_variable_test.h"
#include "atobool_test.h"
#include "hextoi_32_64_test.h"
int main() {
try {
@@ -34,6 +36,8 @@ int main() {
tests.add(new IPCMutexTest());
tests.add(new FixedMemoryHashTest());
tests.add(new FixedMemoryVariableHashTest());
tests.add(new atoboolTest());
tests.add(new hextoi_32_64_Test());
tests.run(*output, true);
} catch(...) {
return -1;