Packageorg.flexunit.internals.builders
Classpublic class FlexUnit4QualifiedBuilder
InheritanceFlexUnit4QualifiedBuilder Inheritance FlexUnit4Builder Inheritance RunnerBuilderBase Inheritance Object

This class is used as an alternate builder for FlexUnit 4. Normally FlexUnit4 is the default builder, so it accepts all classes. In this class we determine if it is actually a FlexUnit 4 test



Public Methods
 MethodDefined By
  
canHandleClass(testClass:Class):Boolean
[override] Returns a boolean value indicating if this builder will be able to handle the testClass or not
FlexUnit4QualifiedBuilder
 Inherited
runnerForClass(testClass:Class):IRunner
[override] Returns a BlockFlexUnit4ClassRunner for the provided testClass.
FlexUnit4Builder
 Inherited
runners(parent:Class, children:Array):Array
Constructs and returns a list of IRunners, one for each child class in children.
RunnerBuilderBase
 Inherited
safeRunnerForClass(testClass:Class):IRunner
Returns an IRunner that can safely run the provided testClass.
RunnerBuilderBase
Method Detail
canHandleClass()method
override public function canHandleClass(testClass:Class):Boolean

Returns a boolean value indicating if this builder will be able to handle the testClass or not

Parameters

testClass:Class — The class to test to determine an IRunner. Returns false, forcing any new subclasses of RunnerBuilderBase to override this method.

Returns
Boolean