assignAndBuildExecutor method
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);
}