Files
Phoenix/unittests/test_overlay.py
Robin Dunn 4d61dc78a8 Add overlay classes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2012-05-19 06:22:42 +00:00

17 lines
448 B
Python

import imp_unittest, unittest
import wtc
import wx
#---------------------------------------------------------------------------
class overlay_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
def test_overlay1(self):
self.fail("Unit tests for overlay not implemented yet.")
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()