作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为类似于下面给出的服务类中的 methodA() 编写测试。
Class SampleService {
def methodA(){
methodB()
}
def methodB(){
}
}
当我测试 methodA() 时,我需要能够在测试 methodA() 时模拟对 methodB() 的调用。我正在使用 2.0.x 版的 grails。在 1.3.x 发行版中,我会像这样编写一个 self 模拟
def sampleServiceMock = mockFor(SampleService)
sampleServiceMock.demand.methodB { -> }
但这在 2.0.x 版本中不起作用。我想知道在测试 methodA() 时模拟 methodB() 的其他方法是什么
最佳答案
对于这类问题,我实际上避免了模拟,而是使用内置的 groovyProxy 功能将闭包映射转换为代理对象。这为您提供了一个实例,其中一些方法被覆盖,但其他方法传递给真正的类:
class SampleService {
def methodA() {
methodB()
}
def methodB() {
return "real method"
}
}
def mock = [methodB: {-> return "mock!" }] as SampleService
assert "mock!" == mock.methodA()
assert "real method" == new SampleService().methodA()
我喜欢它只更改一个实例,可以在一行中完成,并且不会弄乱该实例之外需要清理的任何元类。
关于testing - chalice : How I do mock other methods of a class under test which might be called internally during testing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10203856/
我是一名优秀的程序员,十分优秀!