added files for misc tests, implemented the datetime test

svn-id: r50400
This commit is contained in:
Neeraj Kumar 2010-06-27 21:09:57 +00:00
parent cea663adb6
commit cf3d5c2774
4 changed files with 159 additions and 0 deletions

View file

@ -29,6 +29,7 @@
#include "testbed/fs.h"
#include "testbed/graphics.h"
#include "testbed/misc.h"
#include "testbed/savegame.h"
#include "testbed/testbed.h"
@ -103,6 +104,9 @@ Common::Error TestbedEngine::run() {
SaveGameTestSuite sts;
sts.execute();
MiscTestSuite mts;
mts.execute();
return Common::kNoError;
}