Files
Phoenix/unittests/test_unichar.py
Robin Dunn c9b878a676 Lots more additions for propgrid:
* Update wxWidgets docs for propgrid/props.h and propgrid/advprops.h
* Add etg scripts for propgrid/props.h and propgrid/advprops.h
* Add wxUniChar
* Add wxTextValidator
* Add wxULongLong
2016-08-25 21:26:50 -07:00

17 lines
449 B
Python

import unittest
from unittests import wtc
import wx
#---------------------------------------------------------------------------
class unichar_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
def test_unichar1(self):
self.fail("Unit tests for unichar not implemented yet.")
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()