@After public void after() { reqRepo.deleteAll(); userRepo.deleteAll(); versRepo.deleteAll(); sciRepo.deleteAll(); }
@Given("^a SCI \"([^\"]*)\"$") public void a_SCI(String arg1) throws Throwable { sci = new SCI(); sci.setName(arg1); sciRepo.save(sci); }