mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 01:10:12 +02:00
23 lines
534 B
Python
23 lines
534 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
import wx.propgrid as pg
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class propgridmanager_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_propgridmanager01(self):
|
|
page = pg.PropertyGridPage()
|
|
|
|
|
|
def test_propgridmanager02(self):
|
|
mgr = pg.PropertyGridManager(self.frame)
|
|
page1 = mgr.AddPage('label')
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|