mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 12:41:10 +02:00
24 lines
529 B
Python
24 lines
529 B
Python
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()
|