From cf3d5c27742bf1591ea91b05eb18e600c6ce332c Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Sun, 27 Jun 2010 21:09:57 +0000 Subject: added files for misc tests, implemented the datetime test svn-id: r50400 --- engines/testbed/misc.h | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 engines/testbed/misc.h (limited to 'engines/testbed/misc.h') diff --git a/engines/testbed/misc.h b/engines/testbed/misc.h new file mode 100644 index 0000000000..7568ce34f3 --- /dev/null +++ b/engines/testbed/misc.h @@ -0,0 +1,65 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * $URL$ + * $Id$ + */ + +#ifndef TESTBED_MISC_H +#define TESTBED_MISC_H + +#include "testbed/testsuite.h" + + +namespace Testbed { + +namespace MiscTests { + +// Miscellaneous tests include testing datetime, timers and mutexes + +// Helper functions for Misc tests +void getHumanReadableFormat(TimeDate &td, Common::String &date); + +// will contain function declarations for Misc tests +bool testDateTime(); +bool testTimers(); +bool testMutexes(); +// add more here +} + +class MiscTestSuite : public Testsuite { +public: + /** + * The constructor for the MiscTestSuite + * For every test to be executed one must: + * 1) Create a function that would invoke the test + * 2) Add that test to list by executing addTest() + * + * @see addTest() + */ + MiscTestSuite(); + ~MiscTestSuite(){} + const char *getName() const; + +}; + +} // End of namespace Testbed + +#endif -- cgit v1.2.3