public function testStopOnFirstCallbackFailed()
 {
     $this->addCalbacks();
     $this->row->expects($this->exactly(1))->method('getField')->with('foo')->willReturn(0);
     $this->assertEquals(null, $this->rowAction->render($this->row));
 }