Esempio n. 1
0
 public function testObjectResponse()
 {
     $wsdl = $this->baseuri . "/server2.php?wsdl";
     $client = new Client($wsdl);
     $ret = $client->request("test", "test");
     $this->assertTrue($ret instanceof \stdClass);
     $this->assertEquals("test", $ret->foo);
     $this->assertEquals("test", $ret->bar);
 }