]> git.localhorst.tv Git - blank.git/blob - tst/io/FilesystemTest.hpp
unit tests for filesystem I/O
[blank.git] / tst / io / FilesystemTest.hpp
1 #ifndef BLANK_TEST_IO_FILESYSTEMTEST_HPP
2 #define BLANK_TEST_IO_FILESYSTEMTEST_HPP
3
4 #include <string>
5 #include <cppunit/extensions/HelperMacros.h>
6
7 namespace blank {
8
9 namespace test {
10
11 class FilesystemTest
12 : public CppUnit::TestFixture {
13
14 CPPUNIT_TEST_SUITE(FilesystemTest);
15
16 CPPUNIT_TEST(testFile);
17 CPPUNIT_TEST(testDirectory);
18
19 CPPUNIT_TEST_SUITE_END();
20
21 public:
22         void setUp();
23         void tearDown();
24
25         void testFile();
26         void testDirectory();
27
28 private:
29         std::string test_dir;
30
31 };
32
33 }
34 }
35
36 #endif