Created
February 5, 2014 22:29
-
-
Save chbatey/8834631 to your computer and use it in GitHub Desktop.
Akka: How do I test parent sending msg to child?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ParentActorTest extends TestKit(ActorSystem("TestSystem")) with FunSuiteLike { | |
test("Should delegate the important work to the client") { | |
val underTest = TestActorRef(new ParentActor) | |
underTest ! "Go do some work" | |
// how do i test this? | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment