< prev index next >

tests/system/src/test/java/test/robot/testharness/VisualTestBase.java

Print this page
rev 9491 : 8145203: Refactor systemTests for clear separation of tests
Reviewed-by: kcr

@@ -20,11 +20,11 @@
  *
  * 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 testharness;
+package test.robot.testharness;
 
 import javafx.animation.AnimationTimer;
 import javafx.application.Application;
 import javafx.application.Platform;
 import javafx.scene.Scene;

@@ -39,15 +39,15 @@
 import junit.framework.AssertionFailedError;
 import org.junit.After;
 import org.junit.AfterClass;
 import org.junit.Before;
 import org.junit.BeforeClass;
-import util.Util;
+import test.util.Util;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 import static org.junit.Assert.assertTrue;
-import static util.Util.TIMEOUT;
+import static test.util.Util.TIMEOUT;
 
 /**
  * Common base class for testing snapshot.
  */
 public abstract class VisualTestBase {
< prev index next >