diff options
author | Neeraj Kumar | 2010-10-02 01:05:16 +0000 |
---|---|---|
committer | Neeraj Kumar | 2010-10-02 01:05:16 +0000 |
commit | a16832760bfd1916ad60938e177a5ca6b920d781 (patch) | |
tree | be8dd3757cc98ce6596e0a37a6a6e42168102950 /engines/testbed/savegame.h | |
parent | f94752f7528c406d68353dc75cad4047c4af86a2 (diff) | |
parent | 81a646c9bd32662f2a72fc0b3db32105857b9416 (diff) | |
download | scummvm-rg350-a16832760bfd1916ad60938e177a5ca6b920d781.tar.gz scummvm-rg350-a16832760bfd1916ad60938e177a5ca6b920d781.tar.bz2 scummvm-rg350-a16832760bfd1916ad60938e177a5ca6b920d781.zip |
1. Added ConfigParams Singelton class to eliminate use of configuration specific static variables.
2. Modified code to handle the change
3. Updated the previously merged obsolete copy of branch gsoc2010-testbed.
svn-id: r52973
Diffstat (limited to 'engines/testbed/savegame.h')
-rw-r--r-- | engines/testbed/savegame.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/testbed/savegame.h b/engines/testbed/savegame.h index 98d630d237..dc41ff9b65 100644 --- a/engines/testbed/savegame.h +++ b/engines/testbed/savegame.h @@ -35,11 +35,11 @@ namespace SaveGametests { bool writeDataToFile(const char *fileName, const char *msg); bool readAndVerifyData(const char *fileName, const char *expected); // will contain function declarations for SaveGame tests -bool testSaveLoadState(); -bool testRemovingSavefile(); -bool testRenamingSavefile(); -bool testListingSavefile(); -bool testErrorMessages(); +TestExitStatus testSaveLoadState(); +TestExitStatus testRemovingSavefile(); +TestExitStatus testRenamingSavefile(); +TestExitStatus testListingSavefile(); +TestExitStatus testErrorMessages(); // add more here } // End of namespace SaveGametests |