Skip to content

Commit

Permalink
update test and license year
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinayagarwal committed Mar 7, 2024
1 parent 2fda68a commit c20739f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013, 2022, ControlsFX
* Copyright (c) 2013, 2024, ControlsFX
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2022, ControlsFX
* Copyright (c) 2022, 2024, ControlsFX
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -31,16 +31,13 @@
import javafx.collections.ListChangeListener;
import javafx.collections.ObservableList;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.*;

public class CheckBitSetModelBaseTest {

Expand Down Expand Up @@ -147,6 +144,6 @@ public void testSingleCheckAddsItToIndicesList() {
ObservableList<Integer> checkedIndicesList = model.getCheckedIndices();
assertTrue(checkedIndicesList.isEmpty());
model.check(ROW_3_VALUE);
assertFalse(checkedIndicesList.isEmpty());
assertNotEquals(-1, checkedIndicesList.indexOf(model.getItemIndex(ROW_3_VALUE)));
}
}

0 comments on commit c20739f

Please sign in to comment.