(self, parent, targets)
| 605 | """ |
| 606 | |
| 607 | def __init__(self, parent, targets): |
| 608 | super().__init__(parent) |
| 609 | |
| 610 | layout = QtGui.QHBoxLayout(self) |
| 611 | |
| 612 | tab_widget = QtGui.QTabWidget(self) |
| 613 | tab_widget.setTabsClosable(False) |
| 614 | for target in targets: |
| 615 | widget = DriverTestWidget(parent, target) |
| 616 | tab_widget.addTab(widget, target.name) |
| 617 | |
| 618 | layout.addWidget(tab_widget) |
| 619 | |
| 620 | |
| 621 | def connect_feat(widget, target, feat_name=None, feat_key=MISSING): |
nothing calls this directly
no test coverage detected