That's a good idea. I added listeners and now am finding that it's
not even getting to preinitialize.
This is making me realize that I don't have a very deep understanding
of how Flex components are created and initialized. I never needed it
before but now to understand FLUINT it seems necessary.
Stepping back a little, here's the approach I'm trying to take to
write a GUI test:
- create a lot of data and put it into my program's Model, so it
hopefully has all the same data as if it were connected to the server
at startup
- create a GUI object, in this case ModelerMain
- write my test to look at the contents of various things that will be
displayed in ModelerMain, comparing them with expected values.
I had sort of assumed that if I got all the data in the model right,
which was quite a bit of work, that I could just do new ModelerMain()
and it would work by getting its data from the Model. That isn't
happening so far. I'm willing to debug to try to figure out why not,
but I'm having a hard time even getting into the code to debug what's
going wrong.