]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/uris/uris.cpp
add mac theme -> rgb color conversion
[wxWidgets.git] / tests / uris / uris.cpp
index b12a8f680a8311b14a7ae49e5ff6eac052c8f982..193beca20a6a7ff520f17734e2dd21c767adc33d 100644 (file)
@@ -11,7 +11,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
-#include "wx/wxprec.h"
+#include "testprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
@@ -24,8 +24,6 @@
 #include "wx/uri.h"
 #include "wx/url.h"
 
-#include "wx/cppunit.h"
-
 // Test wxURL & wxURI compat?
 #define TEST_URL ( 0 && wxUSE_URL )
 
@@ -279,7 +277,6 @@ void URITestCase::Comparison()
 #if TEST_URL
 
 #include "wx/url.h"
-#include "wx/mimetype.h"
 
 void URITestCase::URLCompat()
 {
@@ -317,8 +314,6 @@ 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