Thanks for the info, Jan!
One problem I see with this: How can I cast an object of type MyMainApplication to MyTestApplication, if MyTestApplication is a subclass of MyMainApplication?
I've:
* Built an empty class called MyTestApplication that inherits from my main app application class
* Implemented the code in my TestRunner to add a reference to this application
But, I'm getting a ClassCastException (which makes sense):
MainApplication cannot be cast to com.blah.tests.application.MainTestApplication
Are you using an interface or something to resolve this cast Exception?