2020-02-28 21:28:33 +01:00
|
|
|
#include <Platform.h>
|
2020-02-23 12:21:28 +01:00
|
|
|
#include "../cpp_foundation/XStringW.h"
|
|
|
|
#include "../cpp_foundation/XArray.h"
|
|
|
|
#include "../cpp_foundation/XObjArray.h"
|
|
|
|
|
|
|
|
#include "XArray_tests.h"
|
|
|
|
#include "XObjArray_tests.h"
|
2020-02-23 21:23:31 +01:00
|
|
|
#include "XStringWArray_test.h"
|
|
|
|
#include "XStringW_test.h"
|
2020-02-23 12:21:28 +01:00
|
|
|
|
2020-02-23 21:23:31 +01:00
|
|
|
#include <Platform.h> // Only use angled for Platform, else, xcode project won't compile
|
2020-02-23 12:21:28 +01:00
|
|
|
|
|
|
|
bool all_tests()
|
|
|
|
{
|
|
|
|
bool all_ok = true;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = XArray_tests();
|
|
|
|
if ( ret != 0 ) {
|
|
|
|
DebugLog(2, "XArray_tests() failed at test %d\n", ret);
|
|
|
|
all_ok = false;
|
|
|
|
}
|
|
|
|
ret = XObjArray_tests();
|
|
|
|
if ( ret != 0 ) {
|
|
|
|
DebugLog(2, "XObjArray_tests() failed at test %d\n", ret);
|
|
|
|
all_ok = false;
|
|
|
|
}
|
2020-02-23 21:23:31 +01:00
|
|
|
ret = XStringW_tests();
|
|
|
|
if ( ret != 0 ) {
|
|
|
|
DebugLog(2, "XStringW_tests() failed at test %d\n", ret);
|
|
|
|
all_ok = false;
|
|
|
|
}
|
|
|
|
ret = XStringWArray_tests();
|
|
|
|
if ( ret != 0 ) {
|
|
|
|
DebugLog(2, "XStringWArray_tests() failed at test %d\n", ret);
|
|
|
|
all_ok = false;
|
|
|
|
}
|
2020-02-23 12:21:28 +01:00
|
|
|
|
|
|
|
if ( !all_ok ) {
|
2020-02-23 21:23:31 +01:00
|
|
|
DebugLog(2, "A test failed\n");
|
2020-02-23 12:21:28 +01:00
|
|
|
PauseForKey(L"press");
|
|
|
|
}else{
|
2020-03-04 22:54:59 +01:00
|
|
|
#ifdef JIEF_DEBUG
|
2020-03-10 05:32:08 +01:00
|
|
|
DebugLog(2, "All tests are ok\n");
|
2020-03-05 08:38:15 +01:00
|
|
|
// PauseForKey(L"press");
|
2020-02-23 12:21:28 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return all_ok;
|
|
|
|
}
|