holyhoehle
holyhoehle
I have the following StateMachine configuration: ``` @Configuration open class PooledAppConfig { @Bean fun stateMachineRuntimePersister( jpaStateMachineRepository: JpaStateMachineRepository): StateMachineRuntimePersister { return JpaPersistingStateMachineInterceptor(jpaStateMachineRepository) } @Bean fun stateMachineTarget(stateMachineRuntimePersister: StateMachineRuntimePersister): StateMachine { val builder...
When I run the following code I would expect that the database is always cleared after each test and so the results of `test1()` and `test2()` would be the same....
When I try to access a global EntityManager instance from @Nested classes I get the following exception: `java.lang.IllegalArgumentException: JPA test must have either EntityManagerFactory or EntityManager field annotated with @PersistenceUnit,...