当前位置: 首页>>代码示例>>PHP>>正文


PHP CakeTestSuite::addTestFile方法代码示例

本文整理汇总了PHP中CakeTestSuite::addTestFile方法的典型用法代码示例。如果您正苦于以下问题:PHP CakeTestSuite::addTestFile方法的具体用法?PHP CakeTestSuite::addTestFile怎么用?PHP CakeTestSuite::addTestFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CakeTestSuite的用法示例。


在下文中一共展示了CakeTestSuite::addTestFile方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All Bitmasked tests');
     $suite->addTestFile(dirname(__FILE__) . DS . 'Model' . DS . 'BitmaskedBitTest.php');
     $suite->addTestFile(dirname(__FILE__) . DS . 'Model' . DS . 'Behavior' . DS . 'BitmaskedBehaviorTest.php');
     return $suite;
 }
开发者ID:jmcneese,项目名称:bitmasked,代码行数:7,代码来源:AllBitmaskedTest.php

示例2: suite

 /**
  * 	Метод сборки
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All rabbit tests');
     $suite->addTestFile(__DIR__ . DS . 'Dummy' . DS . 'ProducerTest.php');
     $suite->addTestFile(__DIR__ . DS . 'Dummy' . DS . 'ConsumerTest.php');
     return $suite;
 }
开发者ID:pdedkov,项目名称:cakephp-rabbit,代码行数:10,代码来源:AllRabbitTest.php

示例3: suite

 /**
  * suite declares tests to run
  *
  * @access public
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All Helper tests');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helper.test.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helper_collection.test.php');
     $suite->addTestDirectory(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helpers' . DS);
     return $suite;
 }
开发者ID:robotarmy,项目名称:Phog,代码行数:14,代码来源:all_helpers.test.php

示例4: suite

 /**
  * suite method, defines tests for this suite.
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All component class tests');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'component.test.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'component_collection.test.php');
     $suite->addTestDirectory(CORE_TEST_CASES . DS . 'libs' . DS . 'controller' . DS . 'components');
     return $suite;
 }
开发者ID:no2key,项目名称:Web-Framework-Benchmark,代码行数:13,代码来源:all_components.test.php

示例5: suite

 /**
  * suite method, defines tests for this suite.
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All component class tests');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'Controller' . DS . 'ComponentTest.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'Controller' . DS . 'ComponentCollectionTest.php');
     $suite->addTestDirectoryRecursive(CORE_TEST_CASES . DS . 'Controller' . DS . 'Component');
     return $suite;
 }
开发者ID:Marcin11,项目名称:_mojePanstwo-Portal,代码行数:13,代码来源:AllComponentsTest.php

示例6: suite

 /**
  * suite declares tests to run
  *
  * @access public
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All Helper tests');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'View' . DS . 'HelperTest.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'View' . DS . 'HelperCollectionTest.php');
     $suite->addTestDirectory(CORE_TEST_CASES . DS . 'View' . DS . 'Helper' . DS);
     return $suite;
 }
开发者ID:Nervie,项目名称:Beta,代码行数:14,代码来源:AllHelpersTest.php

示例7: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All Acl plugin tests');
     $path = CakePlugin::path('Acl') . DS . 'Test' . DS . 'Case' . DS;
     $suite->addTestFile($path . 'AllAclControllersTest.php');
     $suite->addTestFile($path . 'AllAclComponentsTest.php');
     return $suite;
 }
开发者ID:beyondkeysystem,项目名称:testone,代码行数:8,代码来源:AllAclTestsTest.php

示例8: suite

 /**
  * Suite define the tests for this suite
  *
  * @return CakeTestSuite
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('Baser All Tests');
     $path = __DIR__ . DS;
     $suite->addTestFile($path . 'MailAllControllerTest.php');
     $suite->addTestFile($path . 'MailAllModelTest.php');
     $suite->addTestFile($path . 'MailAllHelpersTest.php');
     return $suite;
 }
开发者ID:kenz,项目名称:basercms,代码行数:14,代码来源:MailAllTest.php

示例9: suite

 /**
  * 	Метод сборки
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All gearman tests');
     $suite->addTestFile(__DIR__ . DS . 'ClientTest.php');
     $suite->addTestFile(__DIR__ . DS . 'WorkerTest.php');
     $suite->addTestFile(__DIR__ . DS . 'ManagerTest.php');
     $suite->addTestFile(__DIR__ . DS . 'Restart' . DS . 'ClientTest.php');
     return $suite;
 }
开发者ID:pdedkov,项目名称:cakephp-gearman,代码行数:12,代码来源:AllGearmanTest.php

示例10: suite

 /**
  * suite method, defines tests for this suite.
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All console classes');
     $path = CORE_TEST_CASES . DS . 'Console' . DS;
     $suite->addTestFile($path . 'AllConsoleLibsTest.php');
     $suite->addTestFile($path . 'AllTasksTest.php');
     $suite->addTestFile($path . 'AllShellsTest.php');
     return $suite;
 }
开发者ID:agashish,项目名称:test_new,代码行数:14,代码来源:AllConsoleTest.php

示例11: suite

 /**
  * suite method, defines tests for this suite.
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('TreeBehavior tests');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'Behavior' . DS . 'TreeBehaviorNumberTest.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'Behavior' . DS . 'TreeBehaviorScopedTest.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'Behavior' . DS . 'TreeBehaviorAfterTest.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'Model' . DS . 'Behavior' . DS . 'TreeBehaviorUuidTest.php');
     return $suite;
 }
开发者ID:pritten,项目名称:SmartCitizen.me,代码行数:14,代码来源:TreeBehaviorTest.php

示例12: suite

 /**
  * Suite define the tests for this suite
  *
  * @return CakeTestSuite
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('Baser Blog All Tests');
     $path = dirname(__FILE__) . DS;
     //$suite->addTestFile($path . 'BlogAllControllerTest.php');
     $suite->addTestFile($path . 'BlogAllModelTest.php');
     $suite->addTestFile($path . 'BlogAllHelpersTest.php');
     return $suite;
 }
开发者ID:baserproject,项目名称:basercms,代码行数:14,代码来源:BlogAllTest.php

示例13: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All core plugins tests');
     $path = CakePlugin::path('Acl') . 'Test' . DS . 'Case' . DS;
     $suite->addTestFile($path . 'AllAclTestsTest.php');
     $path = CakePlugin::path('Extensions') . DS . 'Test' . DS . 'Case' . DS;
     $suite->addTestFile($path . 'AllExtensionsTestsTest.php');
     return $suite;
 }
开发者ID:romaing,项目名称:croogo-rg,代码行数:9,代码来源:AllCorePluginsTest.php

示例14: suite

 /**
  * suite method, defines tests for this suite.
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All Socket related class tests');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'cake_socket.test.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'http_socket.test.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'http_response.test.php');
     $suite->addTestDirectory(CORE_TEST_CASES . DS . 'libs' . DS . 'http');
     return $suite;
 }
开发者ID:robotarmy,项目名称:Phog,代码行数:14,代码来源:all_socket.test.php

示例15: suite

 /**
  * suite method, defines tests for this suite.
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All Configure, App and ClassRegistry related tests');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'configure.test.php');
     $suite->addTestDirectory(CORE_TEST_CASES . DS . 'libs' . DS . 'config');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'app.test.php');
     $suite->addTestFile(CORE_TEST_CASES . DS . 'libs' . DS . 'class_registry.test.php');
     return $suite;
 }
开发者ID:robotarmy,项目名称:Phog,代码行数:14,代码来源:all_configure.test.php


注:本文中的CakeTestSuite::addTestFile方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。