avoid a set of calls to gettext() and/or cousins from global constructor scope
[ardour.git] / libs / pbd / test / filesystem_test.h
index 57f26631d01c910cfef8b64e6ce57716755491e0..45d55a673a46f594c3d0c93bdf2d8389ba6d66a7 100644 (file)
@@ -5,10 +5,19 @@ class FilesystemTest : public CppUnit::TestFixture
 {
        CPPUNIT_TEST_SUITE (FilesystemTest);
        CPPUNIT_TEST (testPathIsWithin);
+       CPPUNIT_TEST (testCopyFileASCIIFilename);
+       CPPUNIT_TEST (testCopyFileUTF8Filename);
+       CPPUNIT_TEST (testFindFilesMatchingPattern);
+       CPPUNIT_TEST (testClearDirectory);
+       CPPUNIT_TEST (testRemoveDirectory);
        CPPUNIT_TEST_SUITE_END ();
 
 public:
        void testPathIsWithin ();
-
+       void testCopyFileASCIIFilename ();
+       void testCopyFileUTF8Filename ();
+       void testFindFilesMatchingPattern ();
+       void testClearDirectory ();
+       void testRemoveDirectory ();
 };