/**
  * Test getter/setter for maxFileSize property
  */
 public function testGetSetMaxFileSize()
 {
     $this->assertNull($this->attribute->getMaxFileSize());
     // Change value and assert new
     $size = 1.23;
     $this->assertEntity($this->attribute->setMaxFileSize($size));
     $this->assertEquals($size, $this->attribute->getMaxFileSize());
 }