当前位置: 首页>>代码示例>>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;未经允许,请勿转载。