コード例 #1
0
 @Test
 public void removesSelectionIfVetorAgrees() throws Exception {
   selectionModel.setSelectionInterval(1, 1);
   selectionModel.addVetor(new Allower());
   selectionModel.removeSelectionInterval(1, 1);
   assertEquals(-1, selectionModel.getMinSelectionIndex());
 }