public function testConstructorWithArrayData()
 {
     $collection = new ImageUriCollection([new ImageUri('http://host.com/img1.jpg')]);
     $collection->add(new ImageUri('http://host.com/img2.jpg'));
     $this->assertEquals(2, $collection->count());
 }