Package | org.flexunit.runner.manipulation |
Interface | public interface ISorter |
Implementors | OrderArgumentPlusAlphaSorter, OrderArgumentPlusInheritanceSorter, OrderArgumentSorter, Sorter |
Method | Defined By | ||
---|---|---|---|
apply(object:Object):void
Sorts the test in runner using compare function. | ISorter | ||
Compares its two arguments for order. | ISorter |
apply | () | method |
public function apply(object:Object):void
Sorts the test in runner
using compare function
.
Parameters
object:Object |
compare | () | method |
public function compare(o1:IDescription, o2:IDescription):int
Compares its two arguments for order. Returns a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.
Parameters
o1:IDescription — IDescription the first object to be compared.
| |
o2:IDescription — IDescription the second object to be compared.
|
int — a negative integer, zero, or a positive integer
as the first argument is less than, equal to, or greater than the second.
|