Add simple test for PBD::find_files_matching_pattern
[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 (testCopyFileASCIIFilename);
9         CPPUNIT_TEST (testCopyFileUTF8Filename);
10         CPPUNIT_TEST (testFindFilesMatchingPattern);
11         CPPUNIT_TEST_SUITE_END ();
12
13 public:
14         void testPathIsWithin ();
15         void testCopyFileASCIIFilename ();
16         void testCopyFileUTF8Filename ();
17         void testFindFilesMatchingPattern ();
18 };
19