I'm not sure how that answers my question. In all fairness I had two
questions so sorry for not being more clear.
The first one was how can I run these tests in my IDE. Since my tests
are testing AIR functionality, say Files, sqlite database, etc. How
will putting them in a mxml Application class work? What you
described sounded like a way where you could run them in Flex and AIR
while sharing the test harness setup code. I'm not interested in
doing that.
I just want to know how I might setup another AIR application using
the same code in FluintAirTestRunner to load my module so I can run my
tests in a debugger and in my IDE.
My other question was why I can't seem to run the AIR test runner from
the command line. Everytime I run it the app flashes on the screen
and immediately exits. I've verified I don't have another instance of
the app running. And I took all of my tests out of the app to see if
it was something failing to setup. Either way, it dies. Maybe I
should start another thread for that.
Charlie
On Jun 25, 11:46 pm, Scott Langeberg <
slangeb...@gmail.com> wrote:
> Take code (test harness setup) from your Module class and copy it to an mxml
> Application file. I just create a shared class to aggregate test suites,
> like:
>
> TestHelper.getUnitTestSuite();
>
> Calling it from both sections.
>