Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

The Suite runner is used with FlexUnit 4 style suites. If you are using FlexUnit .9 suites, see SuiteMethod.

The Suite Runner is used in two ways. The first way is any time RunWith is specified with the Suite runner. This is the most common way the runner called. It will introspect the class and pass any public (this is important) classes back as possible test classes. Any empty Suite will throw an InitializationError.

...

Code Block
actionscript
actionscript
     core = new FlexUnitCore();
     core.run( Request.classes( MyTestClass, AnotherTestClass );

[Back|FlexClient Runners and Builders}