scala – 使用Mockito和Specs2时出错

我有以下规格:

import org.specs2.mock.Mockito
import org.specs2.mutable.Specification

class LinkUserServiceSpec extends Specification with Mockito {

  val linkUserService = mock[LinkUserService]

  "The 'LinkUserService' isUserLinked method" should {
      "return false when a prevIoUsly unlinked userId is passed in for a given service" in {
          linkUserService.isUserLinked("nobody","YT") returns false

          linkUserService.isUserLinked("nobody","YT") must beFalse
      }
  }
}

以及我的build.sbt中的以下依赖项:

“org.specs2”%%“specs2”%“2.2”%“test”

但是当我在sbt控制台中键入test时出现此错误

[error] bad symbolic reference. A signature in MocksCreation.class refers to type MockSettings
[error] in package org.mockito which is not available.
[error] It may be completely missing from the current classpath,or the version on
[error] the classpath might be incompatible with the version used when compiling MocksCreation.class.
[error] bad symbolic reference. A signature in MockitoStubs.class refers to term stubbing
[error] in package org.mockito which is not available.
[error] It may be completely missing from the current classpath,or the version on
[error] the classpath might be incompatible with the version used when compiling MockitoStubs.class.
[error] two errors found
[error] (test:compile) Compilation Failed
[error] Total time: 3 s,completed Sep 12,2013 3:23:41 PM

谁知道这可能是什么?

解决方法

显然,如果你想使用Mockito和Specs2,你必须自己提供依赖,我将以下内容添加到我的build.sbt并开始工作:

“org.mockito”%“mockito-all”%“1.9.5”

相关文章

共收录Twitter的14款开源软件,第1页Twitter的Emoji表情 Tw...
Java和Scala中关于==的区别Java:==比较两个变量本身的值,即...
本篇内容主要讲解“Scala怎么使用”,感兴趣的朋友不妨来看看...
这篇文章主要介绍“Scala是一种什么语言”,在日常操作中,相...
这篇文章主要介绍“Scala Trait怎么使用”,在日常操作中,相...
这篇文章主要介绍“Scala类型检查与模式匹配怎么使用”,在日...