Browse Source

Add Zend_Cloud_Infrastructure to AllTest

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24493 44c647ce-9c0f-0410-b52a-842ac1e357ba
ezimuel 14 years ago
parent
commit
fcc71b5ea6
1 changed files with 7 additions and 1 deletions
  1. 7 1
      tests/Zend/Cloud/AllTests.php

+ 7 - 1
tests/Zend/Cloud/AllTests.php

@@ -39,6 +39,11 @@ require_once 'Zend/Cloud/QueueService/AllTests.php';
 require_once 'Zend/Cloud/StorageService/AllTests.php';
 
 /**
+ * @see Zend_Cloud_Infrastructure_AllTests
+ */
+require_once 'Zend/Cloud/Infrastructure/AllTests.php';
+
+/**
  * @category   Zend
  * @package    Zend_Cloud
  * @subpackage UnitTests
@@ -60,7 +65,8 @@ class Zend_Cloud_AllTests
         $suite->addTest(Zend_Cloud_DocumentService_AllTests::suite());
         $suite->addTest(Zend_Cloud_QueueService_AllTests::suite());
         $suite->addTest(Zend_Cloud_StorageService_AllTests::suite());
-
+        $suite->addTest(Zend_Cloud_Infrastructure_AllTests::suite());
+        
         return $suite;
     }
 }