- CPPUNIT_ASSERT( wxGetRealFile( _T(".") ) == _T("") );
- CPPUNIT_ASSERT( wxGetRealFile( _T(".wav") ) == _T("") );
- CPPUNIT_ASSERT( wxGetRealFile( _T("good.wav") ) == _T("good") );
- CPPUNIT_ASSERT( wxGetRealFile( _T("good.wav.wav") ) == _T("good.wav") );
-}
\ No newline at end of file
+ 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") );
+}