mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
2cb99122d3
MINOR Added documentation for SapphireSoapServer git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@86876 467b73ca-7a2a-4603-9d3b-597d59a354a9
31 lines
644 B
PHP
31 lines
644 B
PHP
<?php
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage tests
|
|
*/
|
|
class SapphireSoapServerTest extends FunctionalTest {
|
|
|
|
/**
|
|
* @see http://open.silverstripe.com/ticket/4570
|
|
*/
|
|
function testWsdl() {
|
|
$response = $this->get('SapphireSoapServerTest_MyServer/wsdl');
|
|
|
|
$this->assertEquals(
|
|
$response->getHeader('Content-Type'),
|
|
'text/xml',
|
|
'wsdl request returns with correct XML content type'
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage tests
|
|
*/
|
|
class SapphireSoapServerTest_MyServer extends SapphireSoapServer {
|
|
|
|
function Link($action = null) {
|
|
return Controller::join_links('SapphireSoapServerTest_MyServer', $action);
|
|
}
|
|
} |