1

我需要有关 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
4

1 回答 1

2

这是因为以下符号

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]])
于 2015-08-06T06:31:04.043 回答