@Before
public void setUp() {
db = new GreenhouseTestDatabaseBuilder().member().activity().invite().testData(getClass()).getDatabase();
jdbcTemplate = new JdbcTemplate(db);
InviteRepository inviteRepository = new JdbcInviteRepository(jdbcTemplate, null);
mailSender = mock(MailSender.class);
inviteService = new AsyncMailInviteService(mailSender, inviteRepository, "http://localhost:8443/invite/accept?token={token}");
}