我在让 TestFx 与 Oracle 的 JavaFx HelloWorld 应用程序一起工作时遇到了一些麻烦:
public class HelloWorld extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Hello World!");
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
primaryStage.setScene(new Scene(root, 300, 250));
primaryStage.show();
}
}
TestFx junit 测试:
class MyTest extends GuiTest {
public Parent getRootNode() {
return nodeUnderTest;
}
nodeUnderTest
这个例子应该是什么?