Esempio n. 1
0
 public function testExceptionWhenRegisteringHandlerOnConfiguredColumn()
 {
     $column = new Column();
     $column->configure(array());
     $this->setExpectedException('Jfsimon\\Datagrid\\Exception\\WorkflowException');
     $column->register(new LabelHandler());
 }