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