我需要有关 scalatest 和 mockito 的帮助。我想用泛型为一个简单的方法编写测试:
trait RestClient {
def put[T: Marshaller](url: String, data: T, query: Option[Map[String, String]] = None) : Future[HttpResponse]
}
我的测试课:
class MySpec extends ... with MockitoSugar .... {
...
val restClient = mock[RestClient]
...
"Some class" must {
"handle exception and print it" in {
when(restClient.put(anyString(), argThat(new SomeMatcher()), any[Option[Map[String, String]])).thenReturn(Future.failed(new Exception("Some exception")))
...
}
}
}
当我运行测试时,它会引发以下异常:
Invalid use of argument matchers!
4 matchers expected, 3 recorded:
那么,如果我的方法只有 3 个参数,为什么它会询问 4 个匹配器?是因为通用吗?
版本:
- 斯卡拉 2.11.7
- scalatest 2.2.4
- 模拟 1.10.19