web-dev-qa-db-fra.com

Test de base JUnit pour JavaFX 8

Je veux créer un test de base JUnit pour l'application JavaFX 8. J'ai cet exemple de code simple:

public class Main extends Application {
    public static void main(String[] args) {
        Application.launch(args);
    }
    @Override
    public void start(Stage primaryStage) {
        primaryStage.setTitle("Tabs");
        Group root = new Group();
        Scene scene = new Scene(root, 400, 250, Color.WHITE);
        TabPane tabPane = new TabPane();
        BorderPane borderPane = new BorderPane();
        for (int i = 0; i < 5; i++) {
            Tab tab = new Tab();
            tab.setText("Tab" + i);
            HBox hbox = new HBox();
            hbox.getChildren().add(new Label("Tab" + i));
            hbox.setAlignment(Pos.CENTER);
            tab.setContent(hbox);
            tabPane.getTabs().add(tab);
        }
        // bind to take available space
        borderPane.prefHeightProperty().bind(scene.heightProperty());
        borderPane.prefWidthProperty().bind(scene.widthProperty());

        borderPane.setCenter(tabPane);
        root.getChildren().add(borderPane);
        primaryStage.setScene(scene);
        primaryStage.show();
    }
}

Je n'ai que ce code jusqu'à présent:

import javafx.application.Application;
import javafx.stage.Stage;
import org.junit.BeforeClass;

public class BasicStart extends Application {

    @BeforeClass
    public static void initJFX() {
        Thread t = new Thread("JavaFX Init Thread") {
            @Override
            public void run() {
                Application.launch(BasicStart.class, new String[0]);
            }
        };
        t.setDaemon(true);
        t.start();
    }

    @Override
    public void start(Stage primaryStage) throws Exception {
        // noop
    }
}

Pouvez-vous me dire comment créer un test JUnit pour le code ci-dessus?

18
Peter Penzov

J'utilise une règle Junit pour exécuter des tests unitaires sur le thread JavaFX. Les détails sont dans cet article . Copiez simplement la classe de ce poste, puis ajoutez ce champ à vos tests unitaires.

@Rule public JavaFXThreadingRule javafxRule = new JavaFXThreadingRule();

Ce code fonctionne pour JavaFX 2 et JavaFX 8.

30
Brian Blonski

L'approche la plus simple est la suivante:

import javafx.application.Platform;
import javafx.embed.swing.JFXPanel;
import javafx.stage.Stage;

import org.junit.Test;

public class BasicStart {

    @Test
    public void testA() throws InterruptedException {
        Thread thread = new Thread(new Runnable() {

            @Override
            public void run() {
                new JFXPanel(); // Initializes the JavaFx Platform
                Platform.runLater(new Runnable() {

                    @Override
                    public void run() {
                        new Main().start(new Stage()); // Create and
                                                        // initialize
                                                        // your app.

                    }
                });
            }
        });
        thread.start();// Initialize the thread
        Thread.sleep(10000); // Time to use the app, with out this, the thread
                                // will be killed before you can tell.
    }

}

J'espère que ça aide!

7
Magcus

Basé sur Brian Blonskiréponse J'ai créé un JUnit-Testrunner , qui fait essentiellement la même chose, mais est un peu plus simple à utiliser dans mon avis. En l'utilisant, votre test ressemblerait à ceci:

@RunWith( JfxTestRunner.class )
public class MyUnitTest
{
  @Test
  public void testMyMethod()
  {
   //...
  }
}
4
Oliver Jan Krylow