aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/template.h
blob: 3c7d498908b52e200ca3993025c63931c791fabc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef TEMPLATE_H
#define TEMPLATE_H

#include "testbed/testsuite.h"

// This file can be used as template for header files of other newer testsuites.

namespace Testbed {

namespace XXXtests {

// Helper functions for XXX tests

// will contain function declarations for XXX tests
// add more here
}

class XXXTestSuite : public Testsuite {
public:
	/**
	 * The constructor for the XXXTestSuite
	 * 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()
	 */
	XXXTestSuite();
	~XXXTestSuite(){}
	const char *getName() const;

};

}	// End of namespace Testbed

#endif