Files
Phoenix/unittests/test_colordlg.py
2016-12-05 16:19:11 -06:00

22 lines
492 B
Python

import unittest
from unittests 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()