(scope, scopes)
| 193 | |
| 194 | |
| 195 | def isScopeInList(scope, scopes): |
| 196 | for entry in scopes: |
| 197 | if matchScope(scope.getValue(), entry.getValue(), scope.getMatchBy()): |
| 198 | return True |
| 199 | return False |
| 200 | |
| 201 | |
| 202 | def matchesFilter(service, types, scopes): |
no test coverage detected