public function testGetWidthReturnsWidth()
 {
     $width = 125;
     $rendition = new Rendition($this->sessionMock, 'objectId');
     $rendition->setWidth($width);
     $this->assertSame($width, $rendition->getWidth());
 }