Add a test for PBD::copy_file using test files with utf-8 encoded filenames

This commit is contained in:
Tim Mayberry 2014-06-25 13:51:58 +10:00 committed by Paul Davis
parent 3f6181c0c3
commit 1eca45d70e
10 changed files with 52 additions and 5 deletions

View file

@ -5,12 +5,14 @@ class FilesystemTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE (FilesystemTest);
CPPUNIT_TEST (testPathIsWithin);
CPPUNIT_TEST (testCopyFile);
CPPUNIT_TEST (testCopyFileASCIIFilename);
CPPUNIT_TEST (testCopyFileUTF8Filename);
CPPUNIT_TEST_SUITE_END ();
public:
void testPathIsWithin ();
void testCopyFile ();
void testCopyFileASCIIFilename ();
void testCopyFileUTF8Filename ();
};