mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 11:00:07 +01:00
19 lines
448 B
Python
19 lines
448 B
Python
import unittest
|
|
from unittests 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()
|