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


PHP TestHelper::runAndCapture方法代碼示例

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


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

示例1: testScriptGeneration

 /**
  * @covers ::run
  */
 public function testScriptGeneration()
 {
     $widget = $this->makeWidget();
     $widget->id = 'foo';
     $widget->alerts = ['foo' => 'bar'];
     $widget->events = ['click' => 'return foobar()'];
     TestHelper::runAndCapture($widget);
     $cs = \Yii::app()->clientScript;
     $script = $cs->scripts[$cs->defaultScriptPosition][get_class($widget) . '#' . $widget->getId()];
     $this->assertEquals("jQuery('#foo .alert').on('click','return foobar()');", $script);
 }
開發者ID:intersvyaz,項目名稱:yii-bootstrap,代碼行數:14,代碼來源:AlertTest.php

示例2: testRegisterClientScript

 /**
  * @cover ::registerClientScript
  */
 public function testRegisterClientScript()
 {
     /** @var CClientScript $cs */
     $cs = Yii::app()->clientScript;
     $cs->reset();
     $widget = $this->makeWidget();
     $widget->cssFile = false;
     TestHelper::runAndCapture($widget);
     $this->assertEmpty(TestHelper::getPropValue($cs, 'cssFiles'));
     $widget = $this->makeWidget();
     $widget->cssFile = 'blargh';
     TestHelper::runAndCapture($widget);
     $this->assertTrue($cs->isCssFileRegistered('blargh'));
 }
開發者ID:intersvyaz,項目名稱:yii-bootstrap,代碼行數:17,代碼來源:LinkPagerTest.php

示例3: testRunLinksRendering

 /**
  * @covers ::run
  */
 public function testRunLinksRendering()
 {
     // no output produced on empty links
     $widget = $this->makeWidget();
     $content = TestHelper::runAndCapture($widget);
     $this->assertEmpty($content);
     // separator between links
     $widget = $this->makeWidget();
     $widget->homeLink = 'foobar';
     $widget->links = ['foo' => 'bar', 'end'];
     $widgetContent = TestHelper::runAndCapture($widget);
     $actualHtml = new DOMDocument();
     $actualHtml->loadHTML($widgetContent);
     $expectedHtml = new DOMDocument();
     $expectedHtml->loadHTML('<ul class="breadcrumb"><li class="active">foobar<span class="divider">/</span></li><li><a href="bar">foo</a><span class="divider">/</span></li><li class="active">end</li></ul>');
     $this->assertEquals($expectedHtml, $actualHtml);
 }
開發者ID:intersvyaz,項目名稱:yii-bootstrap,代碼行數:20,代碼來源:BreadcrumbsTest.php


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