/**
  * Test is/setter for wysiwygEnabled property
  *
  * TODO : Test with the both values
  */
 public function testIsSetWysiwygEnabled()
 {
     $this->assertNull($this->attribute->isWysiwygEnabled());
     // Change value and assert new
     $this->assertEntity($this->attribute->setWysiwygEnabled(true));
     $this->assertTrue($this->attribute->isWysiwygEnabled());
 }