Details
Description
When using SpringJUnit4ClassRunner together with @ContextConfiguration
to inject a configured ProcessEngine into the ActivitiRule, then you
can't use any of the ActivitiRule.get*Service() methods since they all return null.
The problem is that initializeServices() is not called in the "starting(FrameworkMethod method)" method since
it is only called when the processEngine is null.
A possible fix would be to call initializeServices() in setProcessEngine.
There's a pull request on GitHub with a proposed fix on GitHub https://github.com/Activiti/Activiti/pull/32
The pull request has been merged so I presume this issue should be set to resolved.