#ifndef FILENAMETEST_H #define FILENAMETEST_H #include #include "core/basics/FileName.h" /** * CppUnit-Testcase. * Tests for FileName. */ class FileNameTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( FileNameTest ); CPPUNIT_TEST( testFileName ); CPPUNIT_TEST( testFileNameSlash ); CPPUNIT_TEST( testPathRelative ); CPPUNIT_TEST_SUITE_END(); private: public: void setUp(); void tearDown(); /** * Test FileName */ void testFileName(); /** * Test FileName addSlash/removeSlash */ void testFileNameSlash(); /** * Test FileName for relative and absolute path recognition */ void testPathRelative(); }; #endif // FILENAMETEST_H