31 |
31 |
32 class UnittestDialog(QWidget, Ui_UnittestDialog): |
32 class UnittestDialog(QWidget, Ui_UnittestDialog): |
33 """ |
33 """ |
34 Class implementing the UI to the pyunit package. |
34 Class implementing the UI to the pyunit package. |
35 |
35 |
36 @signal unittestFile(string, int, int) emitted to show the source of a unittest file |
36 @signal unittestFile(str, int, int) emitted to show the source of a unittest file |
37 """ |
37 """ |
38 unittestFile = pyqtSignal(str, int, int) |
38 unittestFile = pyqtSignal(str, int, int) |
39 |
39 |
40 def __init__(self,prog = None,dbs = None,ui = None,parent = None,name = None): |
40 def __init__(self,prog = None,dbs = None,ui = None,parent = None,name = None): |
41 """ |
41 """ |