Exemplo n.º 1
0
 /**
  *
  */
 public function testFullRenderByCreate()
 {
     $c = Chrome::create('simple');
     $c->setContent('PASS');
     $this->assertSame('PASS', $c->render());
     $this->assertSame('PASS', (string) $c);
 }
Exemplo n.º 2
0
 /**
  * @expectedException  \OutOfRangeException
  */
 function testStylesheetPriorityFail()
 {
     Chrome::clearStylesheets();
     $this->assertEquals(0, count(Chrome::getStylesheets()));
     Chrome::addStylesheet('/css/common.css', -5);
 }