aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/savegame.h
blob: 337bd46786c58b7dd403d184a6faf24f5467a4f0 (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
#ifndef SAVEGAME_H
#define SAVEGAME_H

#include "testbed/testsuite.h"

namespace Testbed {

namespace SaveGametests {

// Helper functions for SaveGame tests

// will contain function declarations for SaveGame tests
bool testSaveLoadState();
// add more here
}

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

};

}	// End of namespace Testbed

#endif