[Halo] Allow mocked MySQL results for multiple queries

Review Request #398 — Created Dec. 2, 2015 and updated

smillernl
Lunr
personal/sean/multiple_mysqlmock_result_expects
530a937...
lunr
tardypad

Calling for example expectQuerySuccess() only allows one mocked query while you might need more. This adds a parameter to select how many queries you need.
Example:

$this->expectQuerySuccess(3);

$this->result->expects($this->exactly(3))
             ->method('affected_rows')
             ->will($this->returnValue(10));


Loading...