mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-12-16 09:40:07 +01:00
25 lines
596 B
Python
25 lines
596 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
import wx.aui
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class auitabmdi_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_auitabmdi01(self):
|
|
parent = wx.aui.AuiMDIParentFrame(self.frame, title='AUI MDI')
|
|
child = wx.aui.AuiMDIChildFrame(parent, title='Child')
|
|
|
|
parent.Show()
|
|
self.myYield()
|
|
child.Close()
|
|
self.myYield()
|
|
parent.Close()
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|