예제 #1
0
파일: RouteTest.php 프로젝트: mvc5/tests
 /**
  *
  */
 function test_add()
 {
     $route = new Route();
     $route->add('bar', 'baz');
     $this->assertEquals('baz', $route->child('bar'));
 }