use of io.syndesis.server.endpoint.v1.handler.activity.Feature in project syndesis by syndesisio.
the class ActivityITCase method requestFeature.
@Test
public void requestFeature() throws IOException {
ResponseEntity<Feature> re = get("/api/v1/activity/feature", Feature.class);
Feature response = re.getBody();
assertThat(response.isEnabled()).isTrue();
}