matchesTokens static method
Implementation
static bool matchesTokens(AFBaseTestID id, List<String> tokens) {
final idLower = id.code.toLowerCase();
for(final token in tokens) {
if(!idLower.contains(token)) {
return false;
}
}
return true;
}