// headers
// ----------------------------------------------------------------------------
-#include "wx/wxprec.h"
+#include "testprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#include "wx/uri.h"
#include "wx/url.h"
-#include "wx/cppunit.h"
-
// Test wxURL & wxURI compat?
#define TEST_URL ( 0 && wxUSE_URL )
#if TEST_URL
#include "wx/url.h"
-#include "wx/mimetype.h"
void URITestCase::URLCompat()
{
CPPUNIT_ASSERT( test.BuildURI() == wxT("file:%22myf%22ile.txt") );
CPPUNIT_ASSERT( test.GetScheme() == wxT("file") );
CPPUNIT_ASSERT( test.GetPath() == wxT("%22myf%22ile.txt") );
-// CPPUNIT_ASSERT( wxURI::Unescape(wxT("%22myf%22ile.txt")) );
- wxPrintf(wxURI::Unescape(wxT("%22myf%22ile.txt")) );
}
#endif