(address)
| 21 | |
| 22 | |
| 23 | def read_json(address): |
| 24 | with open(address, 'r', encoding='utf-8') as json_file: |
| 25 | json_data = json.load(json_file) |
| 26 | return json_data |
| 27 | |
| 28 | |
| 29 | def toolbench_process(data_file, dataset): |
no outgoing calls
no test coverage detected