aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/graphics.h
diff options
context:
space:
mode:
authorNeeraj Kumar2010-06-02 04:45:44 +0000
committerNeeraj Kumar2010-06-02 04:45:44 +0000
commit5df3809d371c1d37d03dfd51689a58420cc337a6 (patch)
treec0983c9f67dc45b2add8197cd8cb46bd8b8c1e01 /engines/testbed/graphics.h
parentda1f5ee54c91cab0e8a7bf1523a7c8318ee63d1d (diff)
downloadscummvm-rg350-5df3809d371c1d37d03dfd51689a58420cc337a6.tar.gz
scummvm-rg350-5df3809d371c1d37d03dfd51689a58420cc337a6.tar.bz2
scummvm-rg350-5df3809d371c1d37d03dfd51689a58420cc337a6.zip
enhanced the basic testsuite class
svn-id: r49390
Diffstat (limited to 'engines/testbed/graphics.h')
-rw-r--r--engines/testbed/graphics.h20
1 files changed, 18 insertions, 2 deletions
diff --git a/engines/testbed/graphics.h b/engines/testbed/graphics.h
index d10871fefe..db6a6a6d55 100644
--- a/engines/testbed/graphics.h
+++ b/engines/testbed/graphics.h
@@ -1,8 +1,24 @@
#ifdef GRAPHICS_H
#define GRAPHICS_H
+#include "testbed/testsuite.h"
+
namespace Testbed {
-class GFXTestsuite : Testsuite {
+class GFXTestSuite : public Testsuite {
public:
-
+ /**
+ * The constructor for the GFXTestSuite
+ * 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()
+ */
+ GFXTestSuite();
+ ~GFXTestSuite() {};
+}
+
+} // End of namespace Testbed
+
+#endif