Her şeyden önce, StackOverflow'da bu konuda çok sayıda konu buldum, ancak hiçbiri bana gerçekten yardımcı olmadı, bu yüzden muhtemelen yinelenen bir soru sorduğum için üzgünüm.
Bahar testini kullanarak JUnit testleri çalıştırıyorum, kodum şöyle görünüyor
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {})
public class StudentSystemTest {
@Autowired
private StudentSystem studentSystem;
@Before
public void initTest() {
// set up the database, create basic structure for testing
}
@Test
public void test1() {
}
...
}
Benim sorunum, testlerimin diğer testleri etkilememesini istemem. Bu nedenle, her test için geri alma gibi bir şey oluşturmak istiyorum. Bunun için çok aradım ama şimdiye kadar hiçbir şey bulamadım. Bunun için Hibernate ve MySql kullanıyorum