1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
import unittest
from unittests import wtc
import wx
#---------------------------------------------------------------------------
class tipwin_Tests(wtc.WidgetTestCase):
def test_tipwinCtor(self):
w = wx.TipWindow(self.frame, "This is a tip message")
w.SetBoundingRect(self.frame.GetRect())
self.waitFor(100)
w.Show()
self.waitFor(100)
w.Close()
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()
|