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

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

@@ -21,23 +21,25 @@
  * 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;
+package test.javafx.collections;
 
 import org.junit.Before;
 import org.junit.Test;
 
 import java.util.Arrays;
 import java.util.Collection;
 import java.util.HashMap;
 import java.util.Iterator;
 import java.util.Map;
 
-import static javafx.collections.MockMapObserver.Call.call;
-import static javafx.collections.MockMapObserver.Tuple.tup;
+import javafx.collections.MapChangeListener;
+import javafx.collections.ObservableMap;
+import static test.javafx.collections.MockMapObserver.Call.call;
+import static test.javafx.collections.MockMapObserver.Tuple.tup;
 import static org.junit.Assert.*;
 import static org.junit.Assert.assertEquals;
 
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;