Просмотр исходного кода

Merge pull request #226 from mhujer/soap-server-tests

Zend_Soap_Server - skipping test which cannot be fixed
Matthew Weier O'Phinney 12 лет назад
Родитель
Сommit
5593cc2af1
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      tests/Zend/Soap/ServerTest.php

+ 5 - 0
tests/Zend/Soap/ServerTest.php

@@ -546,6 +546,7 @@ class Zend_Soap_ServerTest extends PHPUnit_Framework_TestCase
 
     /**
      * @runInSeparateProcess
+     * @preserveGlobalState disabled
      */
     public function testGetLastRequest()
     {
@@ -582,6 +583,7 @@ class Zend_Soap_ServerTest extends PHPUnit_Framework_TestCase
 
     /**
      * @runInSeparateProcess
+     * @preserveGlobalState disabled
      */
     public function testWsiCompliant()
     {
@@ -887,6 +889,7 @@ class Zend_Soap_ServerTest extends PHPUnit_Framework_TestCase
 
     /**
      * @runInSeparateProcess
+     * @preserveGlobalState disabled
      */
     public function testErrorHandlingOfSoapServerChangesToThrowingSoapFaultWhenInHandleMode()
     {
@@ -980,9 +983,11 @@ class Zend_Soap_ServerTest extends PHPUnit_Framework_TestCase
 
     /**
      * @runInSeparateProcess
+     * @preserveGlobalState disabled
      */
     public function testShouldThrowExceptionIfHandledRequestContainsDoctype()
     {
+        $this->markTestSkipped('Cannot test for RuntimeException from Soap Server');
         $server = new Zend_Soap_Server();
         $server->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
         $server->setReturnResponse(true);