@Test(expected = AssertionError.class)
  public void methodNoMatch() throws Exception {
    this.request.setMethod(HttpMethod.POST);

    MockRestRequestMatchers.method(HttpMethod.GET).match(this.request);
  }
  @Test
  public void method() throws Exception {
    this.request.setMethod(HttpMethod.GET);

    MockRestRequestMatchers.method(HttpMethod.GET).match(this.request);
  }