示例#1
0
 public function decorateConnectionGetConnectionWith($returnValue)
 {
     $this->connectionMock->expects($this->any())->method('getConnection')->will($this->returnValue($returnValue));
 }
示例#2
0
 public function testGetAdapterConvenienceMethod()
 {
     $this->_connectionMock->expects($this->once())->method('getConnection');
     $this->getAdapter();
 }