(test_files, methodName, exchange, skippedProperties, args)
| 170 | |
| 171 | |
| 172 | def call_method_sync(test_files, methodName, exchange, skippedProperties, args): |
| 173 | methodNameToCall = 'test_' + convert_to_snake_case(methodName) |
| 174 | return getattr(test_files[methodName], methodNameToCall)(exchange, skippedProperties, *args) |
| 175 | |
| 176 | async def call_method(test_files, methodName, exchange, skippedProperties, args): |
| 177 | methodNameToCall = 'test_' + convert_to_snake_case(methodName) |
no test coverage detected
searching dependent graphs…