/**
  * @expectedException \RuntimeException
  * @expectedExceptionMessage Method set is not allowed
  */
 public function testSetShouldThrowInvalidArgumentException()
 {
     $collection = new ImageUriCollection();
     $collection->set('key', 'value');
 }