當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TestManager::addTestCasesFromDirectory方法代碼示例

本文整理匯總了PHP中TestManager::addTestCasesFromDirectory方法的典型用法代碼示例。如果您正苦於以下問題:PHP TestManager::addTestCasesFromDirectory方法的具體用法?PHP TestManager::addTestCasesFromDirectory怎麽用?PHP TestManager::addTestCasesFromDirectory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TestManager的用法示例。


在下文中一共展示了TestManager::addTestCasesFromDirectory方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: ModelGroupTest

 function ModelGroupTest()
 {
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'model' . DS . 'model');
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'model' . DS . 'db_acl');
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'model' . DS . 'datasources' . DS . 'dbo_source');
     TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'libs' . DS . 'model' . DS . 'behaviors');
 }
開發者ID:kaz0636,項目名稱:openflp,代碼行數:7,代碼來源:model.group.php

示例2: AllCompatibleGroupTest

 function AllCompatibleGroupTest()
 {
     $cases = dirname(dirname(__FILE__)) . DS . 'cases' . DS;
     TestManager::addTestCasesFromDirectory($this, $cases . DS . 'models' . DS . 'behaviors');
     TestManager::addTestCasesFromDirectory($this, $cases . DS . 'libs');
     TestManager::addTestCasesFromDirectory($this, $cases . DS . 'views' . DS . 'helpers');
 }
開發者ID:Techmentis,項目名稱:flinkiso-lite,代碼行數:7,代碼來源:compatible.group.php

示例3: allGroupTest

 function allGroupTest()
 {
     TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'models');
     TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'helpers');
     TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'controllers');
     TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'components');
     TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'behaviors');
 }
開發者ID:antte,項目名稱:codemitts,代碼行數:8,代碼來源:all.group.php

示例4: project_check_group

	function project_check_group() 
	{
	  $this->GroupTest('project tests');
	  
	  TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/project_check');
	  
	  SiteObjectsTestManager::addTestCasesWithLoader($this, new project_site_objects_loader());
	}	
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:8,代碼來源:__project_check_group.class.php

示例5: AllCoreWithOutDatabaseGroupTest

 /**
  * AllCoreWithOutDatabaseGroupTest method
  * 
  * @access public
  * @return void
  */
 function AllCoreWithOutDatabaseGroupTest()
 {
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'dispatcher');
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'router');
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'inflector');
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'validation');
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'session');
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'socket');
     TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'libs' . DS . 'view');
 }
開發者ID:javierm,項目名稱:wildflower,代碼行數:16,代碼來源:no_database.group.php

示例6: CacheGroupTest

 /**
  * CacheGroupTest method
  *
  * @access public
  * @return void
  */
 function CacheGroupTest()
 {
     TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'cache');
     TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'libs' . DS . 'cache');
 }
開發者ID:acerato,項目名稱:cntcetp,代碼行數:11,代碼來源:cache.group.php

示例7: tests_tree

 function tests_tree()
 {
     $this->GroupTest('tree');
     TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/tree');
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:5,代碼來源:tree.group.php

示例8: ConsoleGroupTest

 /**
  * ConsoleGroupTest method
  *
  * @access public
  * @return void
  */
 function ConsoleGroupTest()
 {
     TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'console');
 }
開發者ID:nurislam,項目名稱:cake-php,代碼行數:10,代碼來源:console.group.php

示例9: LibGroupTest

 /**
  * LibGroupTest method
  *
  * @access public
  * @return void
  */
 function LibGroupTest()
 {
     TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'libs');
 }
開發者ID:adaptivertc,項目名稱:mosat,代碼行數:10,代碼來源:lib.group.php

示例10: tests_site_objects

 function tests_site_objects()
 {
     $this->GroupTest('site objects tests');
     TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/site_objects');
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:5,代碼來源:site_objects.group.php

示例11: ModelsGroupTest

 function ModelsGroupTest()
 {
     TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'models');
 }
開發者ID:Tamsmiranda,項目名稱:croogo,代碼行數:4,代碼來源:models.group.php

示例12: AllGroupTest

 function AllGroupTest()
 {
     TestManager::addTestCasesFromDirectory($this, CAKE_CORE_INCLUDE_PATH . DS . 'app' . DS . 'test' . DS . 'cases');
 }
開發者ID:javierm,項目名稱:wildflower,代碼行數:4,代碼來源:all.group.php

示例13: node_links_group

 function node_links_group()
 {
     $this->GroupTest('nodes links tests');
     TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/node_links/');
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:5,代碼來源:node_links_group.class.php

示例14: fetching_group

 function fetching_group()
 {
     $this->GroupTest('fetch operations');
     TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/fetching');
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:5,代碼來源:fetching_group.class.php

示例15: BehaviorsGroupTest

 function BehaviorsGroupTest()
 {
     TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'behaviors');
 }
開發者ID:Tamsmiranda,項目名稱:croogo,代碼行數:4,代碼來源:behaviors.group.php


注:本文中的TestManager::addTestCasesFromDirectory方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。