selectAndOrderIdsForTest static method
List<String>
selectAndOrderIdsForTest(
- Map<
String, EnsembleTestDefinition> byId, - EnsembleTestSelection selection
Implementation
@visibleForTesting
static List<String> selectAndOrderIdsForTest(
Map<String, EnsembleTestDefinition> byId,
EnsembleTestSelection selection,
) {
return _topologicalSort(_applySelection(byId, selection))
.map((d) => d.testCase.id)
.toList();
}