* re-implement javadsl testkit * fix mima problem * rebase master * move ImplicitSender/DefaultTimeout to scaladsl * undo the change of moving scala api * fix return type and add doc * resolve conflicts and add more comments
30 lines
726 B
Scala
30 lines
726 B
Scala
/**
|
|
* Copyright (C) 2009-2017 Lightbend Inc. <http://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 {
|
|
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
|