@Test
public void testTwo() throws Exception {
TestActorRef<TickTock> actorRef = TestActorRef.apply(new Props(
TickTock.class), _system);
String result = (String) Await.result(ask(actorRef, new Tick("msg"), 5000),
Duration.parse("5 second"));
Assert.assertEquals("processed the tick message", result);
}