selectionLayer.selectCell(1, 1, false, false);
selectionLayer.selectCell(2, 1, false, true); // Select with Ctrl key
// Increment
commandHandler
.doCommand(new TickUpdateCommand(testConfigRegistry, true));
// Should not increment - editors different
assertEquals("[1, 1]", selectionLayer.getDataValueByPosition(1, 1));
assertEquals("[2, 1]", selectionLayer.getDataValueByPosition(2, 1));
// Select cells in column 1 Only
selectionLayer.selectCell(1, 1, false, false);
selectionLayer.selectCell(1, 2, false, true); // Select with Ctrl key
// Increment
commandHandler
.doCommand(new TickUpdateCommand(testConfigRegistry, true));
// Should increment - same editor
assertEquals("[1, 1]up", selectionLayer.getDataValueByPosition(1, 1));
assertEquals("[1, 2]up", selectionLayer.getDataValueByPosition(1, 2));
}