我需要scalatest和mockito的帮助。我想为一个通用的简单方法写一个测试:
trait RestClient {
def put[T: Marshaller](url: String, data: T, query: Option[Map[String, String]] = None) : Future[HttpResponse]
}
my test class:
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")))
...
}
}
}
当我运行test时,它抛出以下异常:
Invalid use of argument matchers!
4 matchers expected, 3 recorded:
那么,如果我的方法只有3个参数,为什么它要求4个匹配器?是因为通用吗?
版本:
- scala 2.11.7
- ——scalate 2.2.4
- 5 1.10.19
这是因为下面的符号
def put[T: Marshaller](a: A, b: B, c: C)
等价于
def put[T](a: A, b: B, c: C)(implicit m: Marshaller[T])
所以你需要为编组器传递一个匹配器:
put(anyA, anyB, anyC)(any[Marshaller[T]])