Exemple #1
0
 /**
  * @test
  */
 public function resolvesKeepsCaseOfResolvedUriIfToLowerCaseIsFalse()
 {
     $this->route->setUriPattern('CamelCase/{someKey}');
     $this->route->setLowerCase(FALSE);
     $this->routeValues = array('someKey' => 'CamelCase');
     $this->assertTrue($this->route->resolves($this->routeValues));
     $this->assertEquals('CamelCase/CamelCase', $this->route->getMatchingUri());
 }