0

我有一个要测试的简单 Scala 应用程序(取自此处)。整个项目使用 SBT 编译成功。但是,当我启动测试时,sbt test我收到以下错误消息:

Could not run test ConnectionTest:java.lang.NoSuchMethodError: akka.actor.Props$.apply(Lscala/Function0;)Lakka/actor/Props;

从互联网搜索中,我得到的印象是我的某些版本控制不兼容,但这只是猜测。可能有什么问题?

[测试用例]

import akka.actor.{Props, Actor, ActorSystem, ActorRef}
import akka.testkit.{TestKit, TestActorRef, ImplicitSender}
import org.scalatest.{WordSpecLike, BeforeAndAfterAll}
import org.scalatest.matchers.MustMatchers

class ConnectionTest extends TestKit(ActorSystem("ConnectionSpec"))
  with WordSpecLike
  with MustMatchers 
  with BeforeAndAfterAll {

  override def afterAll() { system.shutdown() }

  "Server" must {
    "bind to port " in {
      // create server
      val server  = system.actorOf(Props[Server], name = "server")

      expectMsg("Bound to /127.0.0.1:8888")
    }    
  }
}

[构建.sbt]

name := "MyApp"

version := "0.2"

scalaVersion := "2.10.4"

mainClass := Some("akka.Main")

resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"

libraryDependencies +=
"com.typesafe.akka" %% "akka-actor" % "2.3.2"

libraryDependencies += 
"com.typesafe.akka" %% "akka-testkit" % "2.1.4" % "test"

libraryDependencies += 
"org.scalatest" % "scalatest_2.10" % "2.0" % "test"
4

1 回答 1

3

您需要为 testkit 使用相同版本的 Akka。

libraryDependencies += 
"com.typesafe.akka" %% "akka-testkit" % "2.1.4" % "test"

应该

libraryDependencies += 
"com.typesafe.akka" %% "akka-testkit" % "2.3.2" % "test"
于 2014-05-11T17:24:03.343 回答