31 lines
735 B
Scala
31 lines
735 B
Scala
/*
|
|
* Copyright (C) 2009-2018 Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package docs.testkit
|
|
|
|
//#plain-spec
|
|
import akka.actor.ActorSystem
|
|
import akka.testkit.{ ImplicitSender, TestActors, TestKit }
|
|
import org.scalatest.{ BeforeAndAfterAll, Matchers, WordSpecLike }
|
|
|
|
//#implicit-sender
|
|
class MySpec() extends TestKit(ActorSystem("MySpec")) with ImplicitSender
|
|
with WordSpecLike with Matchers with BeforeAndAfterAll {
|
|
//#implicit-sender
|
|
|
|
override def afterAll: Unit = {
|
|
TestKit.shutdownActorSystem(system)
|
|
}
|
|
|
|
"An Echo actor" must {
|
|
|
|
"send back messages unchanged" in {
|
|
val echo = system.actorOf(TestActors.echoActorProps)
|
|
echo ! "hello world"
|
|
expectMsg("hello world")
|
|
}
|
|
|
|
}
|
|
}
|
|
//#plain-spec
|