Files
Phoenix/unittests/test_statbox.py
Robin Dunn 87d042dac9 Add statbox and wrapsizer
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69622 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2011-10-31 23:42:26 +00:00

22 lines
519 B
Python

import imp_unittest, unittest
import wtc
import wx
#---------------------------------------------------------------------------
class statbox_Tests(wtc.WidgetTestCase):
def test_statboxCtor(self):
s = wx.StaticBox(self.frame, label='StaticBox')
def test_statboxDefaultCtor(self):
s = wx.StaticBox()
s.Create(self.frame, label='StaticBox')
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()