use of com.sequenceiq.it.TestParameter in project cloudbreak by hortonworks.
the class IntegrationTestConfiguration method testParameter.
@Bean
public TestParameter testParameter(Environment environment) {
TestParameter testParameter = new TestParameter();
LOGGER.info("Application.yml based parameters ::: ");
testParameter.putAll(getAllKnownProperties(environment));
return testParameter;
}
Aggregations