assertThat(links.supports(SampleController.class), is(false));
thrown.expect(IllegalArgumentException.class);
thrown.expectMessage(SampleController.class.getName());
thrown.expectMessage(ExposesResourceFor.class.getName());
links.linkFor(SampleController.class);
}
@Controller
@ExposesResourceFor(Person.class)
@RequestMapping("/person")