我正在
类型不匹配:预期ReaperSpec.this.Register,actual:String
其中expectMsg(...)
在使用此处指定的ScalaTest时使用AkkaTest
(http://doc.akka.io/docs/akka/snapshot/scala/testing.html)
我错过了什么?
import akka.actor.{ActorSystem, Props}
import akka.testkit.{TestKit, TestProbe}
import system.Reaper.WatchMe
import org.scalatest.{BeforeAndAfterAll, MustMatchers, WordSpecLike}
class ReaperSpec(_system: ActorSystem) extends TestKit(_system)
with WordSpecLike with MustMatchers with BeforeAndAfterAll {
def this() = this(ActorSystem("Reaper"))
override protected def afterAll(): Unit = TestKit.shutdownActorSystem(system)
"A reaper" must {
"terminated when all child actors are stopped" in {
val probeA = TestProbe()
val probeB = TestProbe()
val reaper = system.actorOf(Props(classOf[Reaper]))
reaper ! WatchMe(probeA.ref)
reaper ! WatchMe(probeB.ref)
system.stop(probeA.ref)
system.stop(probeB.ref)
expectMsg("Dead")
}
}
}
答案 0 :(得分:0)
好像我使用了错误的scala测试版。我使用的是3.0.0-M9。将其更改为2.2.5工作。