假设我有这个:
class Dependency1 {
def methodD1 { }
}
class Dependency2 {
val dependency1 = new Dependency1
}
def myMethod() {
val a = new Dependency1
// I want to be able to stub this
val b = a.dependency1.methodD1()
...
}
我想在 RR(红宝石模拟库)中做类似的事情:
any_instance_of(Dependency1) do | obj |
stub(obj) { "123" } # this would be like stub(obj) toReturn("123") with Mockito in Scala
end
我知道 Mockito 中有一个 any 方法,但它是一个匹配器。我正在寻找类似的东西:
stub(anyInstanceOf(Dependency1).methodD1) toReturn("123")
有没有办法用 Mockito/EasyMock/PowerMock/JMock 模拟/存根本地依赖项?
我将 ScalaTest 与 MockitoSugar 一起使用。