#endif // WX_PRECOMP
#include "wx/filename.h"
+#include "wx/filefn.h"
// ----------------------------------------------------------------------------
// test data
CPPUNIT_TEST( TestConstruction );
CPPUNIT_TEST( TestSplit );
CPPUNIT_TEST( TestSetPath );
+ CPPUNIT_TEST( TestStrip );
CPPUNIT_TEST_SUITE_END();
void TestConstruction();
void TestSplit();
void TestSetPath();
+ void TestStrip();
DECLARE_NO_COPY_CLASS(FileNameTestCase)
};
CPPUNIT_ASSERT( name == fni.name );
CPPUNIT_ASSERT( ext == fni.ext );
}
+
+ // special case of empty extension
+ wxFileName fn(_T("foo."));
+ CPPUNIT_ASSERT( fn.GetFullPath() == _T("foo.") );
}
void FileNameTestCase::TestSetPath()
CPPUNIT_ASSERT( fn.SameAs(wxFileName(_T("/usr/local/bin/ls"), wxPATH_UNIX)) );
}
+wxString wxTestStripExtension(wxString szFile)
+{
+ wxStripExtension(szFile);
+ return szFile;
+}
+
+void FileNameTestCase::TestStrip()
+{
+ //test a crash
+ CPPUNIT_ASSERT( wxTestStripExtension( _T("") ) == _T("") );
+
+ //others
+ CPPUNIT_ASSERT( wxTestStripExtension( _T(".") ) == _T("") );
+ CPPUNIT_ASSERT( wxTestStripExtension( _T(".wav") ) == _T("") );
+ CPPUNIT_ASSERT( wxTestStripExtension( _T("good.wav") ) == _T("good") );
+ CPPUNIT_ASSERT( wxTestStripExtension( _T("good.wav.wav") ) == _T("good.wav") );
+}