mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 12:41:10 +02:00
18 lines
370 B
Python
18 lines
370 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class help_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_help1(self):
|
|
#hc = wx.HelpController()
|
|
pass
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|