Esempio n. 1
0
 /**
  * @test
  * 
  * @expectedException \Payum\Exception\InvalidArgumentException
  * @expectedExceptionMessage Invalid input given. Should be an array or instance of \Traversable
  */
 public function throwIfInvalidArgumentGivenForReplace()
 {
     $array = new ArrayObject();
     $array->replace('foo');
 }