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

ZF-7837 - Fixed wrong class name referrals in Zend_Test documentation

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@18222 44c647ce-9c0f-0410-b52a-842ac1e357ba
beberlei 16 лет назад
Родитель
Сommit
b01039b414

+ 2 - 2
documentation/manual/en/module_specs/Zend_Test-PHPUnit-Bootstrapping.xml

@@ -73,7 +73,7 @@ class UserControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
     <para>
         Note the call to <methodname>parent::setUp()</methodname>; this is necessary, as
         the <methodname>setUp()</methodname> method of
-        <classname>Zend_Test_PHPUnit_Controller_TestCase</classname> will perform the
+        <classname>Zend_Test_PHPUnit_ControllerTestCase</classname> will perform the
         remainder of the bootstrapping process (which includes calling the
         callback).
     </para>
@@ -97,7 +97,7 @@ class UserControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
         <listitem><para>
             Do not provide alternate implementations of the Request and
             Response objects; they will not be used.
-            <classname>Zend_Test_PHPUnit_Controller_TestCase</classname> uses custom
+            <classname>Zend_Test_PHPUnit_ControllerTestCase</classname> uses custom
             request and response objects,
             <classname>Zend_Controller_Request_HttpTestCase</classname> and
             <classname>Zend_Controller_Response_HttpTestCase</classname>, respectively.

+ 2 - 2
documentation/manual/en/module_specs/Zend_Test-PHPUnit-Testing.xml

@@ -22,7 +22,7 @@
     </para>
 
     <programlisting language="php"><![CDATA[
-class IndexControllerTest extends Zend_Test_PHPUnit_Controller_TestCase
+class IndexControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
 {
     // ...
 
@@ -41,7 +41,7 @@ class IndexControllerTest extends Zend_Test_PHPUnit_Controller_TestCase
     </para>
 
     <programlisting language="php"><![CDATA[
-class FooControllerTest extends Zend_Test_PHPUnit_Controller_TestCase
+class FooControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
 {
     // ...