assignAndBuildExecutor method

AsserestParallelExecutor assignAndBuildExecutor({
  1. String? name,
  2. int threads = 1,
  3. AsyncTaskLogger? logger,
})

Assign entire items in this List to AsserestParallelExecutor with bypassing AsserestParallelTestPlatform.applyAll.

Implementation

AsserestParallelExecutor assignAndBuildExecutor(
    {String? name, int threads = 1, AsyncTaskLogger? logger}) {
  AsserestParallelTestPlatform platform = AsserestParallelTestPlatform()
    ..applyAll(this);

  return platform.buildExecutor(name: name, threads: threads, logger: logger);
}