listImages() публичный Метод

public listImages ( $nodeImageId = null )
 public function testListImagesWithId()
 {
     $this->addMockSubscriber($this->getTestFilePath('Image'));
     $expectedId = 'df27d481-63a5-40ca-8920-3d132ed643d9';
     $images = $this->provider->listImages($expectedId);
     $this->assertCount(1, $images, 'listImages returns an array with exactly one item');
     $this->assertSame($expectedId, $images[0]->getId(), 'The NodeImage ID matches the ID that was requested');
 }