Add some of the HelpController classes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-04-07 04:17:28 +00:00
parent 9636ae860a
commit 79047b78a6
8 changed files with 149 additions and 7 deletions

16
unittests/test_help.py Normal file
View File

@@ -0,0 +1,16 @@
import imp_unittest, unittest
import wtc
import wx
#---------------------------------------------------------------------------
class help_Tests(wtc.WidgetTestCase):
def test_help1(self):
hc = wx.HelpController()
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()