本文整理匯總了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);
}
示例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'));
}
示例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);
}