You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
4.4 KiB
172 lines
4.4 KiB
<?php
|
|
/**
|
|
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:54.
|
|
*/
|
|
class SoapClientTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var SoapClient
|
|
*/
|
|
protected $object;
|
|
|
|
/**
|
|
* Sets up the fixture, for example, opens a network connection.
|
|
* This method is called before a test is executed.
|
|
*/
|
|
protected function setUp()
|
|
{
|
|
$this->object = new SoapClient;
|
|
}
|
|
|
|
/**
|
|
* Tears down the fixture, for example, closes a network connection.
|
|
* This method is called after a test is executed.
|
|
*/
|
|
protected function tearDown()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__call
|
|
* @todo Implement test__call().
|
|
*/
|
|
public function test__call()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__soapCall
|
|
* @todo Implement test__soapCall().
|
|
*/
|
|
public function test__soapCall()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__getLastRequest
|
|
* @todo Implement test__getLastRequest().
|
|
*/
|
|
public function test__getLastRequest()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__getLastResponse
|
|
* @todo Implement test__getLastResponse().
|
|
*/
|
|
public function test__getLastResponse()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__getLastRequestHeaders
|
|
* @todo Implement test__getLastRequestHeaders().
|
|
*/
|
|
public function test__getLastRequestHeaders()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__getLastResponseHeaders
|
|
* @todo Implement test__getLastResponseHeaders().
|
|
*/
|
|
public function test__getLastResponseHeaders()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__getFunctions
|
|
* @todo Implement test__getFunctions().
|
|
*/
|
|
public function test__getFunctions()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__getTypes
|
|
* @todo Implement test__getTypes().
|
|
*/
|
|
public function test__getTypes()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__doRequest
|
|
* @todo Implement test__doRequest().
|
|
*/
|
|
public function test__doRequest()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__setCookie
|
|
* @todo Implement test__setCookie().
|
|
*/
|
|
public function test__setCookie()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__setLocation
|
|
* @todo Implement test__setLocation().
|
|
*/
|
|
public function test__setLocation()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers SoapClient::__setSoapHeaders
|
|
* @todo Implement test__setSoapHeaders().
|
|
*/
|
|
public function test__setSoapHeaders()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
}
|
|
|