aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/graphics.h
diff options
context:
space:
mode:
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