Files
Phoenix/unittests/test_access.py
Robin Dunn 2f540a91e6 Merge pull request #1034 from RobinD42/fix-issue958-291-wxAccessible
Add wxAccessible and a tool to generate C++ stubs

(cherry picked from commit 3a9f37f2aa)
2018-10-10 19:40:59 -07:00

17 lines
438 B
Python

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