mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 19:10:09 +01:00
25 lines
530 B
Python
25 lines
530 B
Python
import unittest
|
|
from unittests import wtc
|
|
|
|
import wx.propgrid as pg
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class propgridiface_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_propgridiface01(self):
|
|
arg = pg.PGPropArgCls('test_arg')
|
|
|
|
|
|
def test_propgridiface02(self):
|
|
with self.assertRaises(TypeError):
|
|
iface = pg.PropertyGridInterface()
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|