I have the following integration test:
@RunWith(SpringRunner.class)
@SpringBootTest
@Transactional
public class ServiceTestIT {
@Autowired
private ServiceUnderTest service;
@Autowired
private DataSource dataSource;
@Before
public void setup() {
Changes changes = new Changes(new Table(datasource, "SOME_TABLE"));
changes.setStartPointNow();
}
@Test
public void test() {
service.doSomething();
changes.setEndPointNow();
// assert database changes with changes object
}
}
When I run this test it freezes on changes startpoint line in @Before method:
changes.setStartPointNow();
I've figured out that test freezes in org.assertj.db.type.Changes#setStartPointNow
on t.getRowsList();
line, but I don't know how to solve it.
When I remove @Transactional
annotation, everything works fine, nothing freezes, but test doesn't work properly then.
Is there any way to solve this problem preserving @Transactional
annotation?
Please try :