Hey there.
I am having some struggles trying to run a test class that is using TestFX. The error I am getting is:
java.lang.RuntimeException: java.lang.IllegalAccessError: class org.testfx.toolkit.impl.ToolkitServiceImpl (in unnamed module @0x1df82230) cannot access class com.sun.javafx.application.ParametersImpl (in module javafx.graphics) because module javafx.graphics does not export com.sun.javafx.application to unnamed module @0x1df82230... and some more.
If I delete the module-info.java in the main path, the test file will run all good, but I can no longer run the app itself.
Appreciate some explanation to all this modular stuff since all of it is quite new to me.