/**
  * @depends testSetMaxLengthCastsValueToIntegerAndSetsProperty
  */
 public function testGetMaxLengthReturnsPropertyValue()
 {
     $this->propertyStringDefinition->setMaxLength(100);
     $this->assertSame(100, $this->propertyStringDefinition->getMaxLength());
 }