public function testOffsetY()
 {
     $object = new RichText();
     $value = rand(1, 100);
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\AbstractShape', $object->setOffsetY());
     $this->assertEquals(0, $object->getOffsetY());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\AbstractShape', $object->setOffsetY($value));
     $this->assertEquals($value, $object->getOffsetY());
 }