static struct FileNameTest
{
- const wxChar *original;
+ const wxString original;
int flags;
- wxString expected;
+ const wxString expected;
} tests[] =
{
// test wxPATH_NORM_ENV_VARS
);
// compare result with expected string
- CPPUNIT_ASSERT_EQUAL( tests[i].expected, fn.GetFullPath(wxPATH_UNIX) );
+ WX_ASSERT_STR_EQUAL( tests[i].expected, fn.GetFullPath(wxPATH_UNIX) );
}
}