我有一个看起来像这样的单元测试
--module-path <path to the javafx sdk> --add-modules=ALL-MODULE-PATH
实现ActorSystem system = ...
ActorRef actor = system.actorOf(...);
// Actor will create a child actor and send a message to the test actor
expectMsgClass(...)
ActorRef child = getLastSender();
// This message should cause child to exit
actor.tell("stopChild", null);
// Check that child has exited
????
的明显方法似乎是监视演员并期望????
消息。 Terminated
在watch
上;我需要创建一个演员来观看孩子吗,还是可以在演员外面做那个事情?
我想写类似的东西
ActorContext
我可以这样做吗?