splitTest method

Future<void> splitTest(
  1. Map<String, Future<void> Function()> paths
)

Implementation

Future<void> splitTest(Map<String, Future<void> Function()> paths) async {
  var runContext = tester.runContext;

  var index = runContext.pathTracker.split(paths.length);
  var path = paths.entries.elementAt(index);
  runContext.currentSplitName = path.key;
  await path.value();
}