Zipios++
commontest.h
1 #ifndef ZIPIOS_COMMONTEST_H
2 #define ZIPIOS_COMMONTEST_H
3 
4 #include <string>
5 #include <vector>
6 
7 namespace zipios {
8 
9  class TestFiles : public std::vector<std::string> {
10  public:
11  TestFiles() {
12  push_back("all_tests");
13  push_back("file1.txt");
14  push_back("file2.txt");
15  push_back("file3.txt");
16  }
17  static const std::string TEST_ZIPFILE_NAME;
18  };
19 
20 
21 } // namespace
22 
23 #endif