コード例 #1
0
ファイル: HeadLinkTest.php プロジェクト: travisj/zf
 public function testDoesNotAllowDuplicateStylesheets()
 {
     $this->helper->appendStylesheet('foo');
     $this->helper->appendStylesheet('foo');
     $this->assertEquals(1, count($this->helper), var_export($this->helper->getContainer()->getArrayCopy(), 1));
 }