Michael Ennen

Results 175 comments of Michael Ennen

I don't know what `lateinit` means in Kotlin. I don't know anything about Kotlin. If you can show me the equivalent Java code I can definitely help you debug it...

Let's move it into one class for simplicity sake: ```java import com.jfoenix.controls.JFXButton; import com.jfoenix.controls.JFXSnackbar; import com.jfoenix.controls.JFXTextArea; import javafx.fxml.FXML; import javafx.scene.layout.AnchorPane; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.testfx.api.FxToolkit; public class...

In order to use FXML with TestFX you should use the [FXMLLoader](https://docs.oracle.com/javase/9/docs/api/javafx/fxml/FXMLLoader.html) `setController` method. Then inside `beforeEachTest` you should initialize that controller: ```java FXMLLoader loader = new FXMLLoader(ControllerTest.class.getResource("stuff.fxml")); loader.setController(new SomethingController());...

Is the work you mentioned in https://github.com/FXMisc/RichTextFX/blob/master/richtextfx/src/integrationTest/java/org/fxmisc/richtext/RichTextFXTestBase.java or has it not been pushed to github yet?

Okay, for sure. I will take a first look at this tomorrow (I'm GMT -8). Edit: After a *super* brief look, I really like the direction of this PR. The...

I really like the direction this PR is going. I know it's much more fun to write code than it is docs/tutorials. But, once this PR is merged, if you...

@Ortner Let me know when you think the PR is complete and I will do a thorough review. No rush, of course.

I think I'm seeing "Timeout in tear down method (only with awt headless): FxThread is stuck in waiting for rendering to complete. FxEvents are not processed any more." in #606...

Are you using testfx 3.x or 4.x?

I am confused because you are referencing the `org.loadui.testfx.controls.*` package which is TestFX 3.x. Here is the `TableViewMatchersTest` for TestFX 4.x: https://github.com/TestFX/TestFX/blob/master/subprojects/testfx-core/src/test/java/org/testfx/matcher/control/TableViewMatchersTest.java