use of org.fest.swing.fixture.FrameFixture in project beast2 by CompEvol.
the class BeautiBase method onSetUp.
@Override
protected void onSetUp() {
beautiFrame = new FrameFixture(robot(), createNewEditor());
beautiFrame.show();
beautiFrame.resizeTo(new Dimension(1224, 786));
JTabbedPaneFixture f = beautiFrame.tabbedPane();
beauti = (Beauti) f.target;
doc = beauti.doc;
}
Aggregations