mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 11:00:07 +01:00
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:
21
unittests/test_statbox.py
Normal file
21
unittests/test_statbox.py
Normal 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()
|
||||
Reference in New Issue
Block a user