In here, the test does not register the the stage ...
# tornadofx
a
In here, the test does not register the the stage at all. But it does look like it is necessary to have a View for a fragment to exist on. How far off am I?
s
This is because this is a Test App which is intended to be run as a standard app (https://github.com/edvin/tornadofx/wiki/Application-Startup#application-startup)
💯 1
a
This is awesome! Thank you so much! For the TestApp written though, I don't know where this is actually being used to test. Although to be honest, it doesn't seem like the search function for text in repositories are working in Github 😕
s
I'm not sure if I understand you correctly. When you say "where this is actually being used to test", do you mean "where is the TestApp called to test that it works"?
a
@SackCastellon yeah!
s
Well, as I see them, they are just samples of how to use TornadoFX to build a specific view. In that case, how to create a
ListView
with a custom cell. So they are not used to test if things work, at least not automatically, you could run them if you wanted, but manually.
It's like https://github.com/edvin/tornadofx-samples but at a smaller scale.