use of com.yahoo.elide.standalone.ElideStandalone in project elide by yahoo.
the class ElideStandaloneSubscriptionTest method init.
@BeforeAll
public void init() throws Exception {
settings = new ElideStandaloneTestSettings() {
@Override
public ElideStandaloneSubscriptionSettings getSubscriptionProperties() {
return new ElideStandaloneSubscriptionSettings() {
@Override
public boolean enabled() {
return true;
}
@Override
public ConnectionFactory getConnectionFactory() {
return new ActiveMQConnectionFactory("vm://0");
}
};
}
};
elide = new ElideStandalone(settings);
elide.start(false);
}
Aggregations