Example #1
0
 public function testDoctypeIsSet()
 {
     $options = array('doctype' => 'XHTML1_FRAMESET');
     $resource = new ViewResource($options);
     $resource->setBootstrap($this->bootstrap);
     $resource->init();
     $view = $resource->getView();
     $this->assertEquals('XHTML1_FRAMESET', $view->plugin('doctype')->getDoctype());
 }