本文整理汇总了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');
}
示例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');
}
示例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');
}
示例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());
}
示例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');
}
示例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');
}
示例7: tests_tree
function tests_tree()
{
$this->GroupTest('tree');
TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/tree');
}
示例8: ConsoleGroupTest
/**
* ConsoleGroupTest method
*
* @access public
* @return void
*/
function ConsoleGroupTest()
{
TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'console');
}
示例9: LibGroupTest
/**
* LibGroupTest method
*
* @access public
* @return void
*/
function LibGroupTest()
{
TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'libs');
}
示例10: tests_site_objects
function tests_site_objects()
{
$this->GroupTest('site objects tests');
TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/site_objects');
}
示例11: ModelsGroupTest
function ModelsGroupTest()
{
TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'models');
}
示例12: AllGroupTest
function AllGroupTest()
{
TestManager::addTestCasesFromDirectory($this, CAKE_CORE_INCLUDE_PATH . DS . 'app' . DS . 'test' . DS . 'cases');
}
示例13: node_links_group
function node_links_group()
{
$this->GroupTest('nodes links tests');
TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/node_links/');
}
示例14: fetching_group
function fetching_group()
{
$this->GroupTest('fetch operations');
TestManager::addTestCasesFromDirectory($this, LIMB_DIR . '/tests/cases/fetching');
}
示例15: BehaviorsGroupTest
function BehaviorsGroupTest()
{
TestManager::addTestCasesFromDirectory($this, APP_TEST_CASES . DS . 'behaviors');
}