pekko/akka-testkit/src/test/java/akka/testkit/TestActorRefJavaCompile.java

18 lines
389 B
Java
Raw Normal View History

/**
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
*/
package akka.testkit;
import akka.actor.Actor;
import akka.actor.Props;
public class TestActorRefJavaCompile {
public void shouldBeAbleToCompileWhenUsingApply() {
//Just a dummy call to make sure it compiles
TestActorRef<Actor> ref = TestActorRef.apply(Props.empty(), null);
ref.toString();
}
2013-01-09 01:47:48 +01:00
}