]> git.localhorst.tv Git - blobs.git/blobdiff - tst/io/FilesystemTest.hpp
more stuff from blank
[blobs.git] / tst / io / FilesystemTest.hpp
diff --git a/tst/io/FilesystemTest.hpp b/tst/io/FilesystemTest.hpp
new file mode 100644 (file)
index 0000000..65e203a
--- /dev/null
@@ -0,0 +1,37 @@
+#ifndef BLOBS_TEST_IO_FILESYSTEMTEST_HPP
+#define BLOBS_TEST_IO_FILESYSTEMTEST_HPP
+
+#include <string>
+#include <cppunit/extensions/HelperMacros.h>
+
+namespace blobs {
+namespace io {
+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