]> git.localhorst.tv Git - blank.git/blobdiff - tst/io/FilesystemTest.hpp
unit tests for filesystem I/O
[blank.git] / tst / io / FilesystemTest.hpp
diff --git a/tst/io/FilesystemTest.hpp b/tst/io/FilesystemTest.hpp
new file mode 100644 (file)
index 0000000..2b30c5e
--- /dev/null
@@ -0,0 +1,36 @@
+#ifndef BLANK_TEST_IO_FILESYSTEMTEST_HPP
+#define BLANK_TEST_IO_FILESYSTEMTEST_HPP
+
+#include <string>
+#include <cppunit/extensions/HelperMacros.h>
+
+namespace blank {
+
+namespace test {
+
+class FilesystemTest
+: public CppUnit::TestFixture {
+
+CPPUNIT_TEST_SUITE(FilesystemTest);
+
+CPPUNIT_TEST(testFile);
+CPPUNIT_TEST(testDirectory);
+
+CPPUNIT_TEST_SUITE_END();
+
+public:
+       void setUp();
+       void tearDown();
+
+       void testFile();
+       void testDirectory();
+
+private:
+       std::string test_dir;
+
+};
+
+}
+}
+
+#endif