我正在编写一个单元测试并且遇到了一个烦人的问题......假设我正在测试以下功能:
public function functionToTest(array &$data, parameter2)
{
// perform some action on the array that is being passed in by reference
}
现在,当我尝试在我的单元测试中调用这个函数时,我会做这样的事情:
public function testMyFunction()
{
$data = array('key1' => 'val1');
$mockOfClass = $this->getMockBuilder('ClassName')
->disableOriginalConstructor()
->setMethods(array('method1', 'method2')) // My function to test is NOT in this list
->getMock();
$this->mockOfClass->functionToTest($data, true);
// Perform assertions here
}
但是,我收到以下错误消息:
ClassName::addNewFriendsToProfile() 的参数 1 应为参考,给定值
这对我来说似乎很奇怪。首先,我只是通过引用传递一个数组,所以它不应该有这个问题。其次,为什么是参数1?不是说参数0吗?然后,我尝试将调用更改为以下内容:
$this->mockOfClass->functionToTest(&$data, true);
进行此更改后,它可以正常工作。不幸的是,它还会产生以下警告:
在第 xxx 行的 /PathToFile 中不推荐使用调用时传递引用
运行实际代码时,我没有遇到此错误。它只在单元测试中抛出这个错误。另外,我需要使用模拟,因为我正在模拟的类中有方法;所以我不能简单地创建一个类的新实例并调用正在测试的方法。有什么办法可以解决这个问题吗?