コード例 #1
0
ファイル: ViewManagerTest.php プロジェクト: fuelphp/display
 /**
  * @covers ::__construct
  * @covers ::configure
  * @covers ::setViewFolder
  * @covers ::whitelist
  */
 public function testConfig()
 {
     $this->viewManager->setViewFolder('other_views');
     $this->viewManager->whitelist('stdClass');
     $this->assertEquals('other_views', $this->viewManager->viewFolder);
 }