String[] args = null;
ApplicationLauncher.application(JavaApp.class).withArgs(args).start();
}
private void assertFrameIsShowing() {
FrameFixture frameFixture = WindowFinder.findFrame(new GenericTypeMatcher<Frame>(Frame.class) {
@Override
protected boolean isMatching(@Nonnull Frame frame) {
return "Java Application".equals(frame.getTitle()) && frame.isShowing();
}
}).using(robot);