3

我想验证业务逻辑是否将预期user对象传递给 dao,但我不知道如何为其编写自定义参数匹配器。

"user" should {
    "be saved" in {
        val dao = new UserDao()
        dao.save(any[User]) returns mock[User]

        runMyBusinessLogic();

        val expectedUser = new User("Freewind", 123.23234)
        there was one(dao).save(mymatcher(expectedUser));
    }
 }

User班级:

case class User(name:String, random: Double)

其中包含一个double字段,我需要为它做一些特殊的比较。

mymatcher是我要定义的匹配器:

def mymatcher(expected: User) = ??? {
    // compare `name` and `random`
}

但是我不知道怎么做spec2,也找不到任何有用的文件。有什么帮助吗?

4

2 回答 2

3

我使用 beLike 匹配器。像这样:

one(daoMock).insert { beLike[MyEntity] { case t:Entity => {
  t.summary mustEqual "Summary"
  t.description mustEqual "Description"
}}}

在 beLike 匹配器中,您可以使用普通值匹配器。

于 2014-04-01T08:15:02.813 回答
1

对于我使用的模拟匹配Matchers.argThat

import org.mockito.Matchers
import org.mockito.Mockito.verify

verify(service).methodCall(Matchers.argThat({
  case CaseClass("const", arg2) =>
    arg2 == expected
  case _ => false
}))
于 2019-10-22T08:28:16.760 回答