Add statbox and wrapsizer

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69622 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-10-31 23:42:26 +00:00
parent 88e378b612
commit 87d042dac9
5 changed files with 143 additions and 0 deletions

21
unittests/test_statbox.py Normal file
View File

@@ -0,0 +1,21 @@
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()