/**
  * Test is/setter for decimalsAllowed property
  *
  * TODO : Test with the both values
  */
 public function testIsSetDecimalsAllowed()
 {
     $this->assertNull($this->attribute->isDecimalsAllowed());
     $decimalsAllowed = false;
     $this->assertEntity($this->attribute->setDecimalsAllowed($decimalsAllowed));
     $this->assertEquals($decimalsAllowed, $this->attribute->isDecimalsAllowed());
 }