Guest User

Untitled

a guest
Oct 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @Before
  2. public void setUp() throws Exception {
  3. embeddedDatabase = new EmbeddedDatabaseBuilder()
  4. .addDefaultScripts()
  5. .setType(EmbeddedDatabaseType.H2)
  6. .build();
  7. jdbcTemplate = new JdbcTemplate(embeddedDatabase);
  8. personRepository = new PersonRepositoryImpl(jdbcTemplate);
  9. }
Add Comment
Please, Sign In to add comment