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