Search in sources :

Example 1 with Feature

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();
}
Also used : Feature(io.syndesis.server.endpoint.v1.handler.activity.Feature) Test(org.junit.Test)

Aggregations

Feature (io.syndesis.server.endpoint.v1.handler.activity.Feature)1 Test (org.junit.Test)1