edvin
11/30/2017, 7:39 AMkastork
11/30/2017, 10:30 PMkastork
11/30/2017, 10:30 PMinit {
Stylesheet.importServiceLoadedStylesheets()
stylesheet.forEach { importStylesheet(it) }
importChildInterceptors()
}
private fun importChildInterceptors() {
ServiceLoader.load(ChildInterceptor::class.java).forEach {
FX.addChildInterceptor(it)
}
}
edvin
12/01/2017, 6:56 AMkastork
12/01/2017, 4:59 PMkastork
12/01/2017, 4:59 PMkastork
12/01/2017, 8:58 PMChildInterceptorTest.kt
pass if you @Ignore class StylesheetErrorTest : ApplicationTest()
kastork
12/01/2017, 9:20 PMChildInterceptorTest
to ZChildInterceptorTest
. If you do that, the error presents even when running tests with IDEA instead of Maven. It changes the order of the tests so that StylesheetErrorTest
happens first (like it does if you run the Maven test goal).