(test_files, methodName, exchange, skippedProperties, args)
| 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) |
| 178 | return await getattr(test_files[methodName], methodNameToCall)(exchange, skippedProperties, *args) |
| 179 | |
| 180 | |
| 181 | async def call_exchange_method_dynamically(exchange, methodName, args): |
no test coverage detected
searching dependent graphs…