this.selectionLayer.setSelectedCell(9, 4);
assertEquals(9, this.selectionLayer.getLastSelectedCell().getColumnPosition());
assertEquals(4, this.selectionLayer.getLastSelectedCell().getRowPosition());
// open editor
this.natTable.doCommand(new EditSelectionCommand(this.natTable, this.natTable.getConfigRegistry()));
assertNotNull(this.natTable.getActiveCellEditor());
assertEquals(9, this.natTable.getActiveCellEditor().getColumnIndex());
assertEquals(4, this.natTable.getActiveCellEditor().getRowIndex());