f25d3abbc8639fe04a6908ea8874d8029320a959
[ardour.git] / libs / pbd / test / filesystem_test.h
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3
4 class FilesystemTest : public CppUnit::TestFixture
5 {
6         CPPUNIT_TEST_SUITE (FilesystemTest);
7         CPPUNIT_TEST (testPathIsWithin);
8         CPPUNIT_TEST (testCopyFile);
9         CPPUNIT_TEST_SUITE_END ();
10
11 public:
12         void testPathIsWithin ();
13         void testCopyFile ();
14
15 };
16