2011-12-19 11:07:59 +01:00
|
|
|
/**
|
2012-01-19 18:21:06 +01:00
|
|
|
* Copyright (C) 2009-2012 Typesafe Inc. <http://www.typesafe.com>
|
2011-12-19 11:07:59 +01:00
|
|
|
*/
|
2012-05-22 11:37:09 +02:00
|
|
|
package docs.testkit
|
2011-12-15 15:03:05 +01:00
|
|
|
|
|
|
|
|
//#plain-spec
|
|
|
|
|
import akka.actor.ActorSystem
|
|
|
|
|
import akka.actor.Actor
|
|
|
|
|
import akka.actor.Props
|
|
|
|
|
import akka.testkit.TestKit
|
|
|
|
|
import org.scalatest.WordSpec
|
|
|
|
|
import org.scalatest.matchers.MustMatchers
|
|
|
|
|
import org.scalatest.BeforeAndAfterAll
|
|
|
|
|
import akka.testkit.ImplicitSender
|
|
|
|
|
|
|
|
|
|
object MySpec {
|
|
|
|
|
class EchoActor extends Actor {
|
|
|
|
|
def receive = {
|
|
|
|
|
case x ⇒ sender ! x
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#implicit-sender
|
|
|
|
|
class MySpec(_system: ActorSystem) extends TestKit(_system) with ImplicitSender
|
|
|
|
|
with WordSpec with MustMatchers with BeforeAndAfterAll {
|
|
|
|
|
//#implicit-sender
|
|
|
|
|
|
|
|
|
|
def this() = this(ActorSystem("MySpec"))
|
|
|
|
|
|
|
|
|
|
import MySpec._
|
|
|
|
|
|
|
|
|
|
override def afterAll {
|
|
|
|
|
system.shutdown()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"An Echo actor" must {
|
|
|
|
|
|
|
|
|
|
"send back messages unchanged" in {
|
|
|
|
|
val echo = system.actorOf(Props[EchoActor])
|
|
|
|
|
echo ! "hello world"
|
|
|
|
|
expectMsg("hello world")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//#plain-spec
|