Package org.akka.essentials.unittest.actors.TickTock

Examples of org.akka.essentials.unittest.actors.TickTock.Tick


  @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);
  }
View Full Code Here

TOP

Related Classes of org.akka.essentials.unittest.actors.TickTock.Tick

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.