Esempio n. 1
0
 public function testRouteMap()
 {
     Route::map('hello', 'index/hello');
     $this->assertEquals('index/hello', Route::map('hello'));
     $this->assertEquals(['type' => 'module', 'module' => ['index', 'hello', null]], Route::check('hello'));
 }