Example #1
0
 public function testRouteValue()
 {
     $route = new Route();
     $route->createFromRaw("test");
     $this->assertEquals("test", $route->getValue());
     $this->assertEquals("ab", Route::create("ab")->getValue());
 }