X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fio%2FFilesystemTest.hpp;fp=tst%2Fio%2FFilesystemTest.hpp;h=65e203a24237d3fac01bb6e3355ed329de570aae;hb=34e833025f0616ab4b86b808d0ce1cc49cecce5d;hp=0000000000000000000000000000000000000000;hpb=698d8120797383886d1386d3a8ac4b5fc1ca7f16;p=blobs.git diff --git a/tst/io/FilesystemTest.hpp b/tst/io/FilesystemTest.hpp new file mode 100644 index 0000000..65e203a --- /dev/null +++ b/tst/io/FilesystemTest.hpp @@ -0,0 +1,37 @@ +#ifndef BLOBS_TEST_IO_FILESYSTEMTEST_HPP +#define BLOBS_TEST_IO_FILESYSTEMTEST_HPP + +#include +#include + +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