(self)
| 29 | |
| 30 | class MainFrame(wx.Frame): |
| 31 | def __init__(self): |
| 32 | wx.Frame.__init__(self, parent=None, id=wx.ID_ANY, |
| 33 | title='cefwx example2', size=(800, 600)) |
| 34 | |
| 35 | self.initComponents() |
| 36 | self.layoutComponents() |
| 37 | self.initEventHandlers() |
| 38 | if len(sys.argv) == 2 and sys.argv[1] == "test-launch": |
| 39 | wx.CallLater(500, self.testLaunch) |
| 40 | |
| 41 | def testLaunch(self): |
| 42 | # This hash is checked by /tests/test-launch.sh script |
nothing calls this directly
no test coverage detected