在我的 Zend Framework 项目中,我有一个正在测试的表单。在我的表单中,多选元素从模型中获取其选项,模型从数据库中检索它们。
public function init()
{
$this->addElement('select', 'Region_ID', array('multiOptions' => $this->getRegions()));
}
protected function getRegions()
{
$mapper = new Model_RegionMapper();
return $mapper->getFormSelectData(); //this method will try to connect to a database (or get another object that will connect to the database)
}
我尝试复制 PHPUnit 文档中的示例,但它似乎不起作用。
public function setUp()
{
$stub = $this->getMock('Model_RegionMapper');
$stub->expects($this->any())
->method('getFormSelectData')
->will($this->returnValue(array('testdata')));
}
public function testFoo()
{
//this will fail
$form = new My_Form();
}
测试失败,因为它试图在数据库中查找不存在的表。但我根本不希望它连接到数据库。如何正确存根/模拟此方法,使其不调用数据库?