Open
Description
Since we have @Transactional
working with R2DBC repositories in 1.0 M2 (as said here), I would like to ask if there is a way to make @Transactional
working with JUnit (integration) tests (the same way we are able to do when using JDBC repositories). Is this currently possible? Will this even be possible? What is the right approach to achieve transactional tests ?
Currently, running a @Transactional
@SpringBootTest
gives me java.lang.IllegalStateException: Failed to retrieve PlatformTransactionManager for @Transactional test
(the same problem as this guy has: http://disq.us/p/2425ot1).