(self)
| 187 | QtWidgets.QFrame.Shape.Box) |
| 188 | |
| 189 | def accept_test(self): |
| 190 | entry = self.entries[self.current_entry] |
| 191 | if entry.status == 'autogen': |
| 192 | print('Cannot accept autogenerated test cases.') |
| 193 | return |
| 194 | entry.accept() |
| 195 | self.filelist.currentItem().setText( |
| 196 | self.entries[self.current_entry].display) |
| 197 | # Auto-move to the next entry |
| 198 | self.set_entry(min((self.current_entry + 1), len(self.entries) - 1)) |
| 199 | |
| 200 | def reject_test(self): |
| 201 | entry = self.entries[self.current_entry] |
no test coverage detected