]> git.saurik.com Git - wxWidgets.git/commitdiff
"test" for testing a [fixed] proxy crash (from last commit)
authorRyan Norton <wxprojects@comcast.net>
Mon, 14 Mar 2005 03:33:50 +0000 (03:33 +0000)
committerRyan Norton <wxprojects@comcast.net>
Mon, 14 Mar 2005 03:33:50 +0000 (03:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/uris/uris.cpp

index 193beca20a6a7ff520f17734e2dd21c767adc33d..016c6fc024d8bd8218801f3a5798ba5d2a0ab602 100644 (file)
@@ -25,7 +25,7 @@
 #include "wx/url.h"
 
 // Test wxURL & wxURI compat?
-#define TEST_URL ( 0 && wxUSE_URL )
+#define TEST_URL ( 1 && wxUSE_URL )
 
 // ----------------------------------------------------------------------------
 // test class
@@ -50,6 +50,7 @@ private:
         CPPUNIT_TEST( Comparison );
 #if TEST_URL
         CPPUNIT_TEST( URLCompat );
+        CPPUNIT_TEST( URLProxy  );
 #endif
     CPPUNIT_TEST_SUITE_END();
 
@@ -66,6 +67,7 @@ private:
 
 #if TEST_URL
     void URLCompat();
+    void URLProxy();
 #endif
 
     DECLARE_NO_COPY_CLASS(URITestCase)
@@ -316,4 +318,10 @@ void URITestCase::URLCompat()
     CPPUNIT_ASSERT( test.GetPath() == wxT("%22myf%22ile.txt") );
 }
 
+void URITestCase::URLProxy()
+{
+    wxURL url("http://www.asite.com/index.html"); 
+    url.SetProxy("pserv:3122"); 
+}
 #endif
+