/** Test setup */
  @Before
  public void setUp() {
    service = new EarlyAlertSuggestionServiceImpl();
    dao = createMock(EarlyAlertSuggestionDao.class);

    service.setDao(dao);
  }