/**
  * @dataProvider templateStrings
  * @test
  */
 public function uriTemplatesAreExpandedCorrectly($templateString, array $variables, $expectedString)
 {
     $expandedTemplate = UriTemplate::expand($templateString, $variables);
     $this->assertEquals($expectedString, $expandedTemplate);
 }