/**
  * Test is/setter for useableAsGridColumn property
  *
  * TODO : Test with the both values
  */
 public function testIsSetUseableAsGridColumn()
 {
     $this->assertFalse($this->attribute->isUseableAsGridColumn());
     // change value and assert new
     $newUseableAsGridColumn = true;
     $this->assertEntity($this->attribute->setUseableAsGridColumn($newUseableAsGridColumn));
     $this->assertTrue($this->attribute->isUseableAsGridColumn());
 }