コード例 #1
0
ファイル: ChromeTestHTML401.php プロジェクト: ngnpope/jerity
 /**
  *
  */
 public function testFullRenderByCreate()
 {
     $c = Chrome::create('simple');
     $c->setContent('PASS');
     $this->assertSame('PASS', $c->render());
     $this->assertSame('PASS', (string) $c);
 }