Example #1
0
 /** @test */
 public function itShouldReturnBooleanWhenDeletingItems()
 {
     list($driver, $mc) = $this->getClient();
     $map = [['item.success', true], ['item.fails', false]];
     $mc->expects($this->any())->method('delete')->will($this->returnValueMap($map));
     return ClientTest::itShouldReturnBooleanWhenDeletingItems();
 }