use of org.springframework.hateoas.EntityLinks in project spring-boot by spring-projects.
the class HypermediaAutoConfigurationTests method entityLinksCreated.
@Test
public void entityLinksCreated() throws Exception {
this.context = new AnnotationConfigWebApplicationContext();
this.context.setServletContext(new MockServletContext());
this.context.register(BaseConfig.class);
this.context.refresh();
EntityLinks discoverers = this.context.getBean(EntityLinks.class);
assertThat(discoverers).isNotNull();
}
Aggregations