Files
Phoenix/unittests/test_propgridproperty.py
2016-08-24 17:32:10 -07:00

18 lines
468 B
Python

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