Versions Compared

Key

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

The IgnoredClassRunner is the most basic a Runner can be with only the description getter and run() method implemented. The description getter simply returns a Description object.

Code Block
actionscript
actionscript
public function run( notifier:IRunNotifier, token:AsyncTestToken ):void {
     notifier.fireTestIgnored( description );
     token.sendResult();
}

The run() method simply calls to the method "fireTestIgnored" on the IRunNotifier passed to this method, then sendResult() is called on the AsyncTestToken which notifies any notification methods with any ChildErrors, which in this case is nothing.