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


PHP CakeTestSuite類代碼示例

本文整理匯總了PHP中CakeTestSuite的典型用法代碼示例。如果您正苦於以下問題:PHP CakeTestSuite類的具體用法?PHP CakeTestSuite怎麽用?PHP CakeTestSuite使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All Acl component class tests');
     $path = CakePlugin::path('Acl') . DS . 'Test' . DS . 'Case';
     $suite->addTestDirectory($path . DS . 'Controller' . DS . 'Component');
     return $suite;
 }
開發者ID:saydulk,項目名稱:croogo,代碼行數:7,代碼來源:AllAclComponentsTest.php

示例2: suite

 /**
  * Suite define the tests for this suite
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All Bs3Helpers tests');
     $path = CakePlugin::path('Bs3Helpers') . 'Test' . DS . 'Case' . DS . 'View' . DS . 'Helper' . DS;
     $suite->addTestDirectory($path);
     return $suite;
 }
開發者ID:Cakephp-Italia,項目名稱:cakephp-bootstrap3-helpers,代碼行數:12,代碼來源:AllTestsTest.php

示例3: suite

 /**
  * Suite define the tests for this suite
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All Users tests');
     $path = CakePlugin::path('Users') . 'Test' . DS . 'Case' . DS;
     $suite->addTestDirectoryRecursive($path);
     return $suite;
 }
開發者ID:nani8124,項目名稱:infinitas,代碼行數:12,代碼來源:AllUsersTestsTest.php

示例4: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All commands tests');
     $path = APP . 'Test' . DS . 'Case' . DS . 'Console' . DS . 'Command' . DS;
     $suite->addTestDirectory($path);
     return $suite;
 }
開發者ID:laiello,項目名稱:plankonindia,代碼行數:7,代碼來源:AllConsolesTest.php

示例5: suite

 /**
  * suite method, defines tests for this suite.
  *
  * @return void
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All Tasks tests');
     $path = CORE_TEST_CASES . DS . 'Console' . DS . 'Command' . DS . 'Task' . DS;
     $suite->addTestDirectory($path);
     return $suite;
 }
開發者ID:agashish,項目名稱:test_new,代碼行數:12,代碼來源:AllTasksTest.php

示例6: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All lib tests');
     $path = APP . 'Test' . DS . 'Case' . DS . 'Lib' . DS;
     $suite->addTestDirectory($path);
     return $suite;
 }
開發者ID:romaing,項目名稱:croogo-rg,代碼行數:7,代碼來源:AllLibsTest.php

示例7: suite

 /**
  * Suite method, defines tests for this suite.
  *
  * @return void
  */
 public static function suite()
 {
     $Suite = new CakeTestSuite('All Shell tests');
     $path = dirname(__FILE__);
     $Suite->addTestDirectory($path . DS . 'Console' . DS . 'Command');
     return $Suite;
 }
開發者ID:ByMyHandsOnly,項目名稱:BMHO_Web,代碼行數:12,代碼來源:AllShellTestsTest.php

示例8: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All tests');
     $dir = dirname(__FILE__);
     $suite->addTestDirectory($dir . DS . 'Model');
     return $suite;
 }
開發者ID:k1low,項目名稱:setting,代碼行數:7,代碼來源:AllTest.php

示例9: suite

 /**
  * Suite define the tests for this suite
  *
  * @return CakeTestSuite
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All Helper tests');
     $suite->addTestDirectory(__DIR__ . DS . 'Model' . DS);
     $suite->addTestDirectory(__DIR__ . DS . 'Model' . DS . 'Behavior' . DS);
     return $suite;
 }
開發者ID:kenz,項目名稱:basercms,代碼行數:12,代碼來源:MailAllModelTest.php

示例10: suite

 /**
  * 	All AdvancedShell tests suite
  *
  * @return PHPUnit_Framework_TestSuite the instance of PHPUnit_Framework_TestSuite
  */
 public static function suite()
 {
     $suite = new CakeTestSuite('All AdvancedShell Tests');
     $basePath = App::pluginPath('AdvancedShell') . 'Test' . DS . 'Case' . DS;
     $suite->addTestDirectoryRecursive($basePath);
     return $suite;
 }
開發者ID:imsamurai,項目名稱:cakephp-advancedshell,代碼行數:12,代碼來源:AllAdvancedShellTest.php

示例11: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All tests');
     $suite->addTestDirectory(TESTS . 'Case' . DS . 'Model');
     $suite->addTestDirectory(TESTS . 'Case' . DS . 'Controller');
     return $suite;
 }
開發者ID:MrGrigorev,項目名稱:reserva-de-salas,代碼行數:7,代碼來源:AllTestsTest.php

示例12: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('All Auditable Tests');
     $suite->addTestDirectory(__DIR__ . '/Model');
     $suite->addTestDirectory(__DIR__ . '/Model/Behavior');
     return $suite;
 }
開發者ID:radig,項目名稱:auditable,代碼行數:7,代碼來源:AllAuditableTestsTest.php

示例13: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('Croogo controller tests');
     $path = APP . 'Vendor' . DS . 'croogo' . DS . 'croogo' . DS . 'Croogo' . DS . 'Test' . DS . 'Case' . DS . 'Controller' . DS;
     $suite->addTestDirectory($path);
     return $suite;
 }
開發者ID:saydulk,項目名稱:croogo,代碼行數:7,代碼來源:CroogoControllersTest.php

示例14: suite

 public static function suite()
 {
     $suite = new CakeTestSuite('Croogo behavior tests');
     $path = APP . 'Vendor' . DS . 'croogo' . DS . 'croogo' . DS . 'Croogo' . DS . 'Test' . DS . 'Case' . DS . 'Model' . DS . 'Behavior' . DS;
     $suite->addTestDirectory($path);
     return $suite;
 }
開發者ID:saydulk,項目名稱:croogo,代碼行數:7,代碼來源:CroogoBehaviorsTest.php

示例15: suite

 public static function suite()
 {
     $path = APP . 'Plugin' . DS . 'Api' . DS . 'Test' . DS . 'Case' . DS;
     $suite = new CakeTestSuite('All tests');
     $suite->addTestDirectoryRecursive($path);
     return $suite;
 }
開發者ID:manzapanza,項目名稱:cakephp-api-utils,代碼行數:7,代碼來源:AllApiTest.php


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