Files
Phoenix/unittests/test_colordlg.py
2012-03-31 04:41:44 +00:00

22 lines
515 B
Python

import imp_unittest, unittest
import wtc
import wx
#---------------------------------------------------------------------------
class colordlg_Tests(wtc.WidgetTestCase):
def test_colordlg1(self):
data = wx.ColourData()
dlg = wx.ColourDialog(self.frame, data)
dlg.Destroy()
def test_colordlg2(self):
wx.GetColourFromUser
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()