Files
Phoenix/unittests/test_access.py
2018-10-08 21:12:43 -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()