(self, utils, db_utils)
| 170 | |
| 171 | |
| 172 | def start_execution(self, utils, db_utils): |
| 173 | response = self.tester.get( |
| 174 | 'debugger/start_execution/' + str(self.trans_id) + '/' + str( |
| 175 | self.port_no), content_type='application/json') |
| 176 | |
| 177 | if response.status_code != 200: |
| 178 | close_debugger(self) |
| 179 | delete_function(self, utils) |
| 180 | db_utils.disconnect_database( |
| 181 | self, self.server_id, self.db_id) |
| 182 | self.skipTest('Debugger is in Busy state.') |
| 183 | |
| 184 | self.assertEqual(response.status_code, 200) |
| 185 | |
| 186 | |
| 187 | def set_breakpoint(self): |
nothing calls this directly
no test coverage detected