Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(test) Move ScrollPaneTest from unit tests to integration tests. #99

Merged
merged 1 commit into from
Jun 19, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@
* either express or implied. See the Licence for the specific language governing permissions
* and limitations under the Licence.
*/
package org.loadui.testfx.robots.impl;
package org.loadui.testfx;

import static org.hamcrest.Matchers.is;
import static org.loadui.testfx.Assertions.verifyThat;
import javafx.geometry.VerticalDirection;
import javafx.scene.Parent;
import javafx.scene.control.ScrollPane;
Expand All @@ -27,16 +25,18 @@
import org.hamcrest.Factory;
import org.hamcrest.Matcher;
import org.junit.Test;
import org.loadui.testfx.GuiTest;
import org.loadui.testfx.controls.impl.VisibleNodesMatcher;
import org.loadui.testfx.exceptions.NoNodesVisibleException;

public class ScrollRobotImplTest extends GuiTest {
import static org.hamcrest.Matchers.is;
import static org.loadui.testfx.Assertions.verifyThat;

public class ScrollPaneTest extends GuiTest {
public static final int IMAGE_WIDTH = 525;

public static final int IMAGE_HEIGHT = 448;

public static final String IMAGE_RESOURCE = "/java-duke-guitar.png";
public static final String IMAGE_RESOURCE = "java-duke-guitar.png";

private static final String ID1 = "ID1";

Expand Down
File renamed without changes