author | Volker Birk <vb@pep.foundation> |
Thu, 16 Aug 2018 15:28:36 +0200 | |
branch | sync |
changeset 2852 | 135a3e49e48d |
child 2886 | ee600afcb920 |
permissions | -rw-r--r-- |
1 // This file is under GNU General Public License 3.0
2 // see LICENSE.txt
4 #ifndef SYNC_H
5 #define SYNC_H
7 #include <string>
8 #include "EngineTestSessionSuite.h"
10 using namespace std;
12 class SyncTests : public EngineTestSessionSuite {
13 public:
14 SyncTests(string test_suite, string test_home_dir);
15 private:
16 void check_sync();
17 };
19 #endif