From f3dcd38c74c835b0046a849cefa7dafcf1844ccd Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Thu, 17 Jun 2010 11:23:51 +0000 Subject: few fixes in GFX tests, added template for FS tests svn-id: r49925 --- engines/testbed/fs.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 engines/testbed/fs.h (limited to 'engines/testbed/fs.h') diff --git a/engines/testbed/fs.h b/engines/testbed/fs.h new file mode 100644 index 0000000000..f602d984e5 --- /dev/null +++ b/engines/testbed/fs.h @@ -0,0 +1,34 @@ +#ifndef FS_H +#define FS_H + +#include "testbed/testsuite.h" + +namespace Testbed { + +namespace FStests { + +// Helper functions for FS tests + +// will contain function declarations for FS tests +// add more here +} + +class FSTestSuite : public Testsuite { +public: + /** + * The constructor for the FSTestSuite + * 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() + */ + FSTestSuite(); + ~FSTestSuite(){} + const char *getName() const; + +}; + +} // End of namespace Testbed + +#endif -- cgit v1.2.3