mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 12:41:10 +02:00
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class axbase_Tests(wtc.WidgetTestCase):
|
|
|
|
@unittest.skipIf('wxMSW' not in wx.PlatformInfo,
|
|
'PyAxBaseWindow only available on Windows')
|
|
def test_axbase1(self):
|
|
import wx.msw
|
|
w = wx.msw.PyAxBaseWindow(self.frame)
|
|
|
|
|
|
@unittest.skipIf('wxMSW' not in wx.PlatformInfo,
|
|
'PyAxBaseWindow only available on Windows')
|
|
def test_axbase2(self):
|
|
import wx.msw
|
|
w = wx.msw.PyAxBaseWindow()
|
|
w.Create(self.frame)
|
|
|
|
|
|
@unittest.skipIf('wxMSW' not in wx.PlatformInfo,
|
|
'PyAxBaseWindow only available on Windows')
|
|
def test_axbase3(self):
|
|
import wx.msw
|
|
w = wx.msw.PyAxBaseWindow(self.frame,
|
|
id=-1,
|
|
pos=wx.DefaultPosition,
|
|
size=wx.DefaultSize,
|
|
style=0,
|
|
name='testing')
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|