Files
Phoenix/unittests/test_overlay.py
2016-12-05 16:19:11 -06:00

22 lines
479 B
Python

import unittest
from unittests import wtc
import wx
#---------------------------------------------------------------------------
class overlay_Tests(wtc.WidgetTestCase):
def test_overlay1(self):
o = wx.Overlay()
dc = wx.ClientDC(self.frame)
odc = wx.DCOverlay(o, dc)
odc.Clear()
del odc
o.Reset()
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()