Puts a Suite into the Distributor.
Puts a Suite into the Distributor.
the Suite to put into the Distributor.
a Tracker to pass to the Suite's run method.
a Filter to pass to the Suite's run method.
Puts a Suite into the Distributor.
Puts a Suite into the Distributor.
the Suite to put into the Distributor.
a Tracker to pass to the Suite's run method.
Please use the apply method that takes a filter instead, the one with this signature: def apply(suite: Suite, tracker: Tracker, filter: Filter)
Trait whose instances facilitate parallel execution of
Suites. An optionalDistributoris passed to therunmethod ofSuite. If aDistributoris indeed passed, traitSuite's implementation ofrunwill populate thatDistributorwith its nestedSuites (by passing them to theDistributor'sapplymethod) rather than executing the nestedSuites directly. It is then up to another thread or process to execute thoseSuites.If you have a set of nested
Suites that must be executed sequentially, you can mix in traitSequentialNestedSuiteExecution, which overridesrunNestedSuitesand callssuper'srunNestedSuitesimplementation, passing inNonefor theDistributor.Implementations of this trait must be thread safe.