}
@Test
public void getMethodForREST_method_DELETE() throws Exception {
ScenicFrontController target = new ScenicFrontControllerStub("controller");
MockHttpServletRequest request = getRequest("POST");
request.setParameter("_method", "DELETE");
assertThat(target.getMethodForREST(request), is("DELETE"));
}