mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
17 lines
382 B
Python
17 lines
382 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
import wx.adv
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class helpext_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_helpext1(self):
|
|
hc = wx.adv.ExtHelpController()
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|