コード例 #1
0
ファイル: HeadStyleTest.php プロジェクト: pnaq57/zf2demo
 public function testCapturingCapturesToObject()
 {
     $this->helper->captureStart();
     echo 'foobar';
     $this->helper->captureEnd();
     $values = $this->helper->getArrayCopy();
     $this->assertEquals(1, count($values));
     $item = array_shift($values);
     $this->assertContains('foobar', $item->content);
 }