use of com.google.refine.broker.RefineBrokerImpl in project OpenRefine by OpenRefine.
the class RefineBrokerTests method test_init.
@BeforeTest
public void test_init() throws Exception {
logger = LoggerFactory.getLogger(this.getClass());
config = mock(ServletConfig.class);
when(config.getInitParameter("refine.data")).thenReturn(data.getAbsolutePath());
when(config.getInitParameter("refine.development")).thenReturn("true");
broker = new RefineBrokerImpl();
broker.init(config);
}
Aggregations