public function testGetColumnAttributesBadResponseFromComponent()
 {
     $this->setExpectedException('LogicException');
     $list = new ArrayList(array(new Member(array("ID" => 1, "Email" => "*****@*****.**"))));
     $config = GridFieldConfig::create()->addComponent(new GridFieldTest_Component());
     $obj = new GridField('testfield', 'testfield', $list, $config);
     $obj->getColumnAttributes($list->first(), 'Surname');
 }