/**
  * @covers SilverStripe\Forms\GridField\GridField::handleAction
  */
 public function testHandleAction()
 {
     $config = GridFieldConfig::create()->addComponent(new GridFieldTest_Component());
     $obj = new GridField('testfield', 'testfield', ArrayList::create(), $config);
     $this->assertEquals('handledAction is executed', $obj->handleAlterAction('jump', array(), array()));
 }