org.specs2.mock.Mockito匹配器没有按预期工作



下面是我要运行的代码:

import org.specs2.mock.Mockito
import org.specs2.mutable.Specification
import org.specs2.specification.Scope
import akka.event.LoggingAdapter
class MySpec extends Specification with Mockito {

  "Something" should {
      "do something" in new Scope {
      val logger = mock[LoggingAdapter]
      val myVar = new MyClassTakingLogger(logger)
      myVar.doSth()
      there was no(logger).error(any[Exception], "my err msg")
      }
  }
}

当运行这个时,我得到以下错误:

[error]    org.mockito.exceptions.misusing.InvalidUseOfMatchersException:
[error]    Invalid use of argument matchers!
[error]    2 matchers expected, 1 recorded:
[error]    -> at         org.specs2.mock.mockito.MockitoMatchers$class.any(MockitoMatchers.scala:47)
[error]
[error]    This exception may occur if matchers are combined with raw values:
[error]        //incorrect:
[error]        someMethod(anyObject(), "raw String");
[error]    When using matchers, all arguments have to be provided by matchers.
[error]    For example:
[error]        //correct:
[error]        someMethod(anyObject(), eq("String by matcher"));

这很有意义,但是eq("my err msg")equals("my err msg")都不能完成工作,因为我得到了一个错误。我错过了什么?

我想补充一点,你应该警惕默认参数,即如果在存根方法时使用匹配器,请确保为所有参数传递参数匹配器,因为默认参数几乎肯定会有常量值-导致同样的错误出现。

。存根方法

def myMethod(arg1: String, arg2: String arg3: String = "default"): String

你不能简单地做

def myMethod(anyString, anyString) returns "some value"

,但您还需要传递一个参数匹配器的默认值,如:

def myMethod(anyString, anyString, anyString) returns "some value"

花了半个小时才弄明白:)

当您使用匹配器来匹配参数时,您必须对所有参数使用它们。如all arguments have to be provided by matchers所示

此外,如果您使用specs2匹配器,它需要是强类型的。equalsMatcher[Any],但没有Matcher[Any]String的转换,这是method接受的。

所以你需要Matcher[T]Matcher[String]在你的情况下。如果您只想测试是否相等,强类型匹配器是===

there was no(logger).error(any[Exception], ===("hey"))

相关内容

  • 没有找到相关文章

最新更新