release 2.0.0dev8
[m6w6/ext-http] / tests / message002.phpt
index bb19875844411b0bfc810c884329f5b04a358338..dcaacf3d4b4d2e0f18917654d4215ab81e41f486 100644 (file)
@@ -18,7 +18,7 @@ use http\env\Request as HttpEnvRequest;
 $m = new HttpEnvRequest();
 
 var_dump($m);
-echo $m;
+echo $m,"\n";
 
 var_dump((string)$m->getBody());
 
@@ -47,12 +47,12 @@ object(%s)#%d (13) {
   string(3) "1.1"
   ["headers":protected]=>
   array(4) {
-    ["Content-Type"]=>
-    string(14) "test/something"
-    ["Content-Length"]=>
-    string(1) "3"
     ["X-Test"]=>
     string(4) "test"
+    ["Content-Length"]=>
+    string(1) "3"
+    ["Content-Type"]=>
+    string(14) "test/something"
     ["Cookie"]=>
     string(7) "foo=bar"
   }
@@ -80,8 +80,10 @@ object(%s)#%d (13) {
 }
 POST / HTTP/1.1%a
 X-Test: test%a
+Content-Length: 3%a
+Content-Type: test/something%a
 Cookie: foo=bar%a
 %a
-b=c%a
+b=c
 string(3) "b=c"
 Done