當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。