@dataProvider testMethodFixtures
public function testMethod($requestMethod, $matcherMethod, $isMatch) {
$matcher = new RequestMatcher();
$matcher
->matchMethod($matcherMethod);
$request = Request::create('', $requestMethod);
$this
->assertSame($isMatch, $matcher
->matches($request));
$matcher = new RequestMatcher(null, null, $matcherMethod);
$request = Request::create('', $requestMethod);
$this
->assertSame($isMatch, $matcher
->matches($request));
}