这是我的代码。如何修改函数的返回结果。
class Replace {
public function add($a){
// how can I replace $this->double($anyNum) return value
return $a + $this->double($a);
}
public function double($a){
return $a + $a;
}
}
class ReplaceTest extends PHPUnit_Framework_TestCase {
public function testadd(){
$replace = $this->getMock('Replace');
// I want to control the method's return,
//no matter what num passed to it from function add
$replace->expects($this->any())->method('double')->will($this->returnValue(15));
// this return null
$data = $replace->add(6);
// this is the expected result I want,
// and when I set the returnValue(21),I hope the expected result is 27
$this->assertEquals(21, $data);
}
}
我如何修改我的代码,非常感谢你。
答案 0 :(得分:0)
如果指定,getMock()的第二个参数告诉phpunit要替换哪些方法。因此,在您的情况下:
$replace = $this->getMock('Replace',array('add'))
虽然在您给出的示例中,我建议不要模拟Replace类,但为double()方法添加测试就足够了,就好像double()测试通过一样,您可以依赖该方法的结果。 / p>