Example #1
0
 /**
  * @covers Fabfuel\Prophiler\Decorator\PDO\PDO::__call
  * @uses Fabfuel\Prophiler\Decorator\PDO\PDO
  */
 public function testCall()
 {
     $this->pdo->expects($this->once())->method('foobar')->with('lorem', 'ipsum');
     $this->decorator->foobar('lorem', 'ipsum');
 }