Browse Source

[TESTS] Zend_CodeGenerator

Added testbeds.


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23432 44c647ce-9c0f-0410-b52a-842ac1e357ba
ramon 15 years ago
parent
commit
38126d96c2
1 changed files with 2 additions and 0 deletions
  1. 2 0
      tests/Zend/CodeGenerator/Php/AllTests.php

+ 2 - 0
tests/Zend/CodeGenerator/Php/AllTests.php

@@ -35,6 +35,7 @@ require_once 'Zend/CodeGenerator/Php/FileTest.php';
 require_once 'Zend/CodeGenerator/Php/MethodTest.php';
 require_once 'Zend/CodeGenerator/Php/ParameterTest.php';
 require_once 'Zend/CodeGenerator/Php/PropertyTest.php';
+require_once 'Zend/CodeGenerator/Php/Property/DefaultValueTest.php';
 
 /**
  * @category   Zend
@@ -65,6 +66,7 @@ class Zend_CodeGenerator_Php_AllTests
         $suite->addTestSuite('Zend_CodeGenerator_Php_MethodTest');
         $suite->addTestSuite('Zend_CodeGenerator_Php_ParameterTest');
         $suite->addTestSuite('Zend_CodeGenerator_Php_PropertyTest');
+        $suite->addTestSuite('Zend_CodeGenerator_Php_Property_DefaultValueTest');
 
         return $suite;
     }