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


PHP TestController::constructClasses方法代碼示例

本文整理匯總了PHP中TestController::constructClasses方法的典型用法代碼示例。如果您正苦於以下問題:PHP TestController::constructClasses方法的具體用法?PHP TestController::constructClasses怎麽用?PHP TestController::constructClasses使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TestController的用法示例。


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

示例1: testPropertyCompatibilityAndModelsComponents

 /**
  * test that the BC wrapper doesn't interfere with models and components.
  *
  * @return void
  */
 public function testPropertyCompatibilityAndModelsComponents()
 {
     $request = new CakeRequest('controller_posts/index');
     $Controller = new TestController($request);
     $Controller->constructClasses();
     $this->assertInstanceOf('SecurityComponent', $Controller->Security);
     $this->assertInstanceOf('ControllerComment', $Controller->ControllerComment);
 }
開發者ID:abhinand4858,項目名稱:ProgrammedV,代碼行數:13,代碼來源:ControllerTest.php

示例2: testRender

 /**
  * testRender method
  *
  * @access public
  * @return void
  */
 function testRender()
 {
     Configure::write('viewPaths', array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'views' . DS, TEST_CAKE_CORE_INCLUDE_PATH . 'libs' . DS . 'view' . DS));
     $Controller =& new Controller();
     $Controller->viewPath = 'posts';
     $result = $Controller->render('index');
     $this->assertPattern('/posts index/', $result);
     $result = $Controller->render('/elements/test_element');
     $this->assertPattern('/this is the test element/', $result);
     $Controller = new TestController();
     $Controller->constructClasses();
     $Controller->ControllerComment->validationErrors = array('title' => 'tooShort');
     $expected = $Controller->ControllerComment->validationErrors;
     ClassRegistry::flush();
     $Controller->viewPath = 'posts';
     $result = $Controller->render('index');
     $View = ClassRegistry::getObject('view');
     $this->assertTrue(isset($View->validationErrors['ControllerComment']));
     $this->assertEqual($expected, $View->validationErrors['ControllerComment']);
     $Controller->ControllerComment->validationErrors = array();
     ClassRegistry::flush();
 }
開發者ID:acerato,項目名稱:cntcetp,代碼行數:28,代碼來源:controller.test.php

示例3: testValidateErrors

 /**
  * testValidateErrors method
  *
  * @access public
  * @return void
  */
 function testValidateErrors()
 {
     $TestController = new TestController();
     $TestController->constructClasses();
     $this->assertFalse($TestController->validateErrors());
     $this->assertEqual($TestController->validate(), 0);
     $TestController->ControllerComment->invalidate('some_field', 'error_message');
     $TestController->ControllerComment->invalidate('some_field2', 'error_message2');
     $comment = new ControllerComment();
     $comment->set('someVar', 'data');
     $result = $TestController->validateErrors($comment);
     $expected = array('some_field' => 'error_message', 'some_field2' => 'error_message2');
     $this->assertIdentical($result, $expected);
     $this->assertEqual($TestController->validate($comment), 2);
 }
開發者ID:evrard,項目名稱:cakephp2x,代碼行數:21,代碼來源:controller.test.php


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