package fest;

import org.fest.swing.fixture.FrameFixture;
import org.junit.Test;

public class TestFrameWithScroll {
	@Test
	public void test() throws InterruptedException {
		FrameFixture frameFixture = new FrameFixture(new FrameWithScroll());

		frameFixture.robot.waitForIdle();
		frameFixture.show();
		frameFixture.maximize();
		
		frameFixture.button("button").click();
		
		//uncomment the following line to see the button in the scroll pane
//		Thread.currentThread().sleep(10000);
	}
}

