Add unit tests for PBD::clear_directory and PBD::remove_directory

This commit is contained in:
Tim Mayberry 2014-06-25 21:43:15 +10:00 committed by Paul Davis
parent 1e1a291ee2
commit 28ac321d31
2 changed files with 108 additions and 0 deletions

View file

@ -8,6 +8,8 @@ class FilesystemTest : public CppUnit::TestFixture
CPPUNIT_TEST (testCopyFileASCIIFilename);
CPPUNIT_TEST (testCopyFileUTF8Filename);
CPPUNIT_TEST (testFindFilesMatchingPattern);
CPPUNIT_TEST (testClearDirectory);
CPPUNIT_TEST (testRemoveDirectory);
CPPUNIT_TEST_SUITE_END ();
public:
@ -15,5 +17,7 @@ public:
void testCopyFileASCIIFilename ();
void testCopyFileUTF8Filename ();
void testFindFilesMatchingPattern ();
void testClearDirectory ();
void testRemoveDirectory ();
};