From ff3d9a3532d011db02c121bac04bd3134f02172e Mon Sep 17 00:00:00 2001 From: Ryan Norton Date: Thu, 2 Dec 2004 00:02:11 +0000 Subject: [PATCH] better name - add newline to end of file for dumber compilers git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30840 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/filename/filenametest.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/filename/filenametest.cpp b/tests/filename/filenametest.cpp index fe5667b536..2ce261d716 100644 --- a/tests/filename/filenametest.cpp +++ b/tests/filename/filenametest.cpp @@ -161,7 +161,7 @@ void FileNameTestCase::TestSetPath() CPPUNIT_ASSERT( fn.SameAs(wxFileName(_T("/usr/local/bin/ls"), wxPATH_UNIX)) ); } -wxString wxGetRealFile(wxString szFile) +wxString wxTestStripExtension(wxString szFile) { wxStripExtension(szFile); return szFile; @@ -170,11 +170,11 @@ wxString wxGetRealFile(wxString szFile) void FileNameTestCase::TestStrip() { //test a crash - CPPUNIT_ASSERT( wxGetRealFile( _T("") ) == _T("") ); + CPPUNIT_ASSERT( wxTestStripExtension( _T("") ) == _T("") ); //others - 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") ); +}