TestSuiteFactory
collects test suites.
public function collectAllTestCases(Void):TestSuite
Collects all methods and properties as test cases except the ones declared by
Object
.
a test suite that contains all tests
public function collectTestCasesByPackage(package:PackageInfo):TestSuite
Collects all methods and properties of the given package
and all
sub-packages as test cases except the ones declared by Object
.
package | the package to begin the collection at |
a test suite that contains all collected tests
public function collectTestCasesByClass(clazz:ClassInfo):TestSuite
Collects all methods and properties of the given class as test cases. Methods and properties of super-classes are not included.
clazz | the class to collect the methods and properties of |
a test suite that contains all collected tests