mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
17 lines
438 B
Python
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()
|