corrected SetPath tests
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28817 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
098937b044
commit
67050b6d4a
@ -138,11 +138,11 @@ void FileNameTestCase::TestSplit()
|
||||
void FileNameTestCase::TestSetPath()
|
||||
{
|
||||
wxFileName fn(_T("d:\\test\\foo.bar"), wxPATH_DOS);
|
||||
fn.SetPath(_T("c:\\temp"));
|
||||
CPPUNIT_ASSERT( fn == _T("c:\\temp\\foo.bar") );
|
||||
fn.SetPath(_T("c:\\temp"), wxPATH_DOS);
|
||||
CPPUNIT_ASSERT( fn.SameAs(wxFileName(_T("c:\\temp\\foo.bar"), wxPATH_DOS)) );
|
||||
|
||||
fn = _T("/usr/bin/ls");
|
||||
fn.SetPath(_T("/usr/local/bin"));
|
||||
CPPUNIT_ASSERT( fn == _T("/usr/local/bin/ls") );
|
||||
fn = wxFileName(_T("/usr/bin/ls"), wxPATH_UNIX);
|
||||
fn.SetPath(_T("/usr/local/bin"), wxPATH_UNIX);
|
||||
CPPUNIT_ASSERT( fn.SameAs(wxFileName(_T("/usr/local/bin/ls"), wxPATH_UNIX)) );
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user