2
votes
3answers
137 views

Testing Outgoing Akka Actor Messages

Let's say I have an actor like this (Using Akka 2.1 with Scala 2.10): class ClientActor extends Actor with ActorLogging { val configurationManager = context.actorOf(Props[ConfigurationManager], ...
1
vote
1answer
101 views

Akka - replace actor in running ActorSystem

I need to unit-test my application, involving sending a message to actor. I would like to get the whole system up and then replace some of actors with my "mock" instances, keeping original actors ...
4
votes
1answer
552 views

Using Mokito to mock out an Akka Actor's log object

I've tried a couple of things which seem to compile but throw NullPointer exceptions during unit testing so I'm wondering how I could potentially overcome the limitations in unit-testing. I have a ...
12
votes
2answers
815 views

Wait for an Actor to exit()

How do I wait for a Scala Actor to exit()? I set up two Actors in a unit test, and send a few messages to get them started. They send a few messages back and forth and eventually both call exit(). ...
12
votes
5answers
2k views

Unit testing scala actors

Anyone know of a good way to unit test Scala actors? In the general sense I have an actor that receives a message and will send out other messages in response. This is done on multiple threads, and an ...