Hi all,
I'm a beginner in akka. And I found it great so first of all thank you for this great job!
I'm would like to test my actor in Java and I would like to use the unit test approach as describe in the documentation. Therefore I'm using the TestActorRef.create(...) method to create my Actor under testing.
But unfortunately this actor create child actor for its context: getContext().actorOf(...).
I the second case the actor creation does not use the Calling thread dispatcher strategy.
Is there a way to make this strategy global for all actor creation? For the moment I use a workaround by delegating the creation of the actor to a third component that I switch the implementation for the test cases.
Thanks in advance,
Romain.