connectionMock = $this->getMock('Zend_Test_PHPUnit_Db_Connection', array(), array(), '', false); } public function decorateConnectionMockWithZendAdapter() { $this->decorateConnectionGetConnectionWith(new Zend_Test_DbAdapter()); } public function decorateConnectionGetConnectionWith($returnValue) { $this->connectionMock->expects($this->any()) ->method('getConnection') ->will($this->returnValue($returnValue)); } }