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

17 lines
441 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()