Config.w32 chack for both instances of event.h
[m6w6/ext-http] / tests / messagebody002.phpt
1 --TEST--
2 message body append
3 --SKIPIF--
4 <?php
5 include "skipif.inc";
6 ?>
7 --FILE--
8 <?php
9 echo "Test\n";
10
11 $temp = new http\Message\Body();
12 $temp->append("yes");
13
14 var_dump((string) $temp);
15
16 ?>
17 DONE
18 --EXPECT--
19 Test
20 string(3) "yes"
21 DONE