コード例 #1
0
ファイル: DispatcherTest.php プロジェクト: studio-v/nano
 public function testGetController()
 {
     $c = $this->dispatcher->getController(Nano_Route::create('', 'test', 'test'));
     $this->assertType('Nano_C', $c);
     $this->assertType('TestController', $c);
 }