mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
21 lines
471 B
Python
21 lines
471 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class wrapsizer_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_wrapsize(self):
|
|
ws = wx.WrapSizer()
|
|
ws.Add(wx.Panel(self.frame))
|
|
ws.Add(wx.Panel(self.frame))
|
|
ws.Add(wx.Panel(self.frame))
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|