我有一些延伸Actor的东西(因为里面使用了一些演员参考)
trait DemoService extends Actor {
def actorRefFactory = context
implicit def executionContext = actorRefFactory.dispatcher
val demoRoute = {
get {
pathSingleSlash {
complete(index)
} ~
path("ping") {
complete("PONG!")
}
现在我正在编写Spec文件。
TestServiceSpec extends FlatSpec with Spec2RouteTest with DemoService
gettting error
could not find implicit value for parameter ta: TestServiceSpec
.this.TildeArrow[spray.routing.RequestContext,Unit]"
如果我使用ScalaTestRouteTest
,我也会收到此错误。