mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 19:10:09 +01:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
19 lines
447 B
Python
19 lines
447 B
Python
import imp_unittest, unittest
|
|
import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class busyinfo_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_busyinfo1(self):
|
|
busy = wx.BusyInfo('This is a busy info message')
|
|
self.waitFor(250)
|
|
del busy
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|