On Mon, Dec 1, 2008 at 3:43 AM, Marvin Froeder <[EMAIL PROTECTED]> wrote:
> The test methods are selected by test unit framework. I believe flexunit
> select test*().
The default TestRunner chooses classes with this pattern by default:
Test*.as and *Test.as
Those classes get added to the Suite, which runs the test* methods in
those classes.
To customize this, use <includeTestFiles> and <excludeTestFiles> like this:
<includeTestFiles>
<param>*Test.as</param>
<param>MyCustomTestClass.as</param>
</includeTestFiles>
<excludeTestFiles>
<param>TestingToolkit.as</param>
</excludeTestFiles>
Logan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Flex Mojos" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/flex-mojos?hl=en?hl=en
http://blog.flex-mojos.info/
-~----------~----~----~----~------~----~------~--~---