Files
Phoenix/unittests/test_grid.py

17 lines
439 B
Python

import imp_unittest, unittest
import wtc
import wx
#---------------------------------------------------------------------------
class grid_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
def test_grid1(self):
self.fail("Unit tests for grid not implemented yet.")
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()