modules/base/src/test/java/test/javafx/collections/ObservableSetTest.java

Print this page
rev 9235 : 8134760: Refactor Javafx base module tests for clear separation of tests
Reviewed-by:

*** 21,43 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package javafx.collections; import java.util.Arrays; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Set; import org.junit.Before; import org.junit.Test; ! import static javafx.collections.MockSetObserver.Call.*; ! import static javafx.collections.MockSetObserver.Tuple.*; import static org.junit.Assert.*; import static org.junit.Assert.assertEquals; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; --- 21,45 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package test.javafx.collections; import java.util.Arrays; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Set; + import javafx.collections.ObservableSet; + import javafx.collections.SetChangeListener; import org.junit.Before; import org.junit.Test; ! import static test.javafx.collections.MockSetObserver.Call.*; ! import static test.javafx.collections.MockSetObserver.Tuple.*; import static org.junit.Assert.*; import static org.junit.Assert.assertEquals; import org.junit.runner.RunWith; import org.junit.runners.Parameterized;