mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
34 lines
688 B
Python
34 lines
688 B
Python
import unittest
|
|
from unittests import wtc
|
|
|
|
import wx.propgrid as pg
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class propgridpagestate_Tests(wtc.WidgetTestCase):
|
|
|
|
|
|
def test_propgridpagestate01(self):
|
|
r = pg.PropertyGridHitTestResult()
|
|
|
|
|
|
def test_propgridpagestate02(self):
|
|
ib = pg.PropertyGridIteratorBase()
|
|
ii = pg.PropertyGridIterator()
|
|
|
|
|
|
def test_propgridpagestate03(self):
|
|
i = pg.PGVIterator()
|
|
|
|
|
|
def test_propgridpagestate04(self):
|
|
s = pg.PropertyGridPageState()
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|