コード例 #1
0
 /**
  * @test
  */
 public function it_does_not_match_any_request_when_no_paths_are_provided()
 {
     $requestMatcher = new MultiPathRequestMatcher([]);
     $matches = $requestMatcher->matches(new Request());
     $this->assertFalse($matches);
 }