findScreenTestByTokens method

List<AFScreenPrototype> findScreenTestByTokens(
  1. List<String> tokens
)

Implementation

List<AFScreenPrototype> findScreenTestByTokens(List<String> tokens) {
  final result = <AFScreenPrototype>[];
  _findUITestInSetByTokens(tokens, primaryUITests, result);

  for(final thirdParty in thirdPartyUITests.values) {
    _findUITestInSetByTokens(tokens, thirdParty, result);
  }
  return result;
}