Add some of the debug related functions

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73256 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-12-22 08:01:37 +00:00
parent b24e226a29
commit d0343102dc
3 changed files with 69 additions and 0 deletions

16
unittests/test_debug.py Normal file
View File

@@ -0,0 +1,16 @@
import imp_unittest, unittest
import wtc
import wx
#---------------------------------------------------------------------------
class debug_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
def test_debug1(self):
self.fail("Unit tests for debug not implemented yet.")
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()