use of com.netflix.conductor.dao.RateLimitingDAO in project conductor by Netflix.
the class ExecutionDAOFacadeTest method setUp.
@Before
public void setUp() {
executionDAO = mock(ExecutionDAO.class);
queueDAO = mock(QueueDAO.class);
indexDAO = mock(IndexDAO.class);
rateLimitingDao = mock(RateLimitingDAO.class);
pollDataDAO = mock(PollDataDAO.class);
objectMapper = new JsonMapperProvider().get();
Configuration configuration = new TestConfiguration();
executionDAOFacade = new ExecutionDAOFacade(executionDAO, queueDAO, indexDAO, rateLimitingDao, pollDataDAO, objectMapper, configuration);
}
Aggregations