mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
17 lines
389 B
Python
17 lines
389 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
import wx.html
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class htmlwinpars_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_htmlwinpars1(self):
|
|
obj = wx.html.HtmlWinParser()
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|