fix assert for non-existing MIDI patch-names
[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_SUITE_END ();
9
10 public:
11         void testPathIsWithin ();
12
13 };
14