mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 01:10:12 +02:00
- added progress tags - changed wx calls which are no longer valid in Phoenix - changed public method documentation to Sphinx/Phoenix format - created tests git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
144 lines
3.7 KiB
Python
144 lines
3.7 KiB
Python
import imp_unittest, unittest
|
|
import wtc
|
|
import wx
|
|
import wx.lib.masked as m
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class MaskedComboBoxTests(wtc.WidgetTestCase):
|
|
|
|
def test_ComboBoxCtors(self):
|
|
c = m.ComboBox(self.frame, value='value', choices="one two three four".split())
|
|
c = m.ComboBox(self.frame, -1, 'value', wx.Point(10,10), wx.Size(80,-1),
|
|
"one two three four".split(), 0)
|
|
c = m.ComboBox(self.frame, -1, "", (10,10), (80,-1), "one two three four".split(), 0)
|
|
|
|
self.assertTrue(c.GetCount() == 4)
|
|
|
|
#def test_ComboBoxDefaultCtor(self):
|
|
#c = m.PreMaskedComboBox(self.frame)
|
|
#c.Create(self.frame, value="value", choices="one two three four".split())
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class MaskedTextCtrlTests(wtc.WidgetTestCase):
|
|
|
|
def test_textctrlCtor(self):
|
|
t = m.TextCtrl(self.frame)
|
|
t = m.TextCtrl(self.frame, -1, "Hello")
|
|
t = m.TextCtrl(self.frame, style=wx.TE_READONLY)
|
|
t = m.TextCtrl(self.frame, style=wx.TE_PASSWORD)
|
|
t = m.TextCtrl(self.frame, style=wx.TE_MULTILINE)
|
|
|
|
|
|
#def test_textctrlDefaultCtor(self):
|
|
#t = m.TextCtrl()
|
|
#t.Create(self.frame)
|
|
|
|
|
|
def test_textctrlProperties(self):
|
|
t = m.TextCtrl(self.frame)
|
|
|
|
t.DefaultStyle
|
|
t.NumberOfLines
|
|
t.Hint
|
|
t.InsertionPoint
|
|
t.LastPosition
|
|
t.Margins
|
|
t.StringSelection
|
|
t.Value
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
class MaskedNumCtrlTests(wtc.WidgetTestCase):
|
|
|
|
def test_numctrlCtor(self):
|
|
t = m.NumCtrl(self.frame)
|
|
t = m.NumCtrl(self.frame, -1, "10")
|
|
t = m.NumCtrl(self.frame, style=wx.TE_READONLY)
|
|
|
|
|
|
#def test_numctrlDefaultCtor(self):
|
|
#t = m.TextCtrl()
|
|
#t.Create(self.frame)
|
|
|
|
|
|
def test_numctrlProperties(self):
|
|
t = m.NumCtrl(self.frame)
|
|
|
|
t.DefaultStyle
|
|
t.NumberOfLines
|
|
t.Hint
|
|
t.InsertionPoint
|
|
t.LastPosition
|
|
t.Margins
|
|
t.StringSelection
|
|
t.Value
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
class MaskedTimeCtrlTests(wtc.WidgetTestCase):
|
|
|
|
def test_timectrlCtor(self):
|
|
t = m.TimeCtrl(self.frame)
|
|
t = m.TimeCtrl(self.frame, -1, "18:00:00")
|
|
t = m.TimeCtrl(self.frame, style=wx.TE_READONLY)
|
|
|
|
|
|
#def test_numctrlDefaultCtor(self):
|
|
#t = m.TextCtrl()
|
|
#t.Create(self.frame)
|
|
|
|
|
|
def test_timectrlProperties(self):
|
|
t = m.TimeCtrl(self.frame)
|
|
|
|
t.DefaultStyle
|
|
t.NumberOfLines
|
|
t.Hint
|
|
t.InsertionPoint
|
|
t.LastPosition
|
|
t.Margins
|
|
t.StringSelection
|
|
t.Value
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class MaskedIpAddrCtrlTests(wtc.WidgetTestCase):
|
|
|
|
def test_ipaddrctrlCtor(self):
|
|
t = m.IpAddrCtrl(self.frame)
|
|
t = m.IpAddrCtrl(self.frame, -1, "128.000.000.000")
|
|
t = m.IpAddrCtrl(self.frame, style=wx.TE_READONLY)
|
|
|
|
|
|
#def test_ipaddrctrlDefaultCtor(self):
|
|
#t = m.IpAddrCtrl()
|
|
#t.Create(self.frame)
|
|
|
|
|
|
def test_ipaddrctrlProperties(self):
|
|
t = m.IpAddrCtrl(self.frame)
|
|
|
|
t.DefaultStyle
|
|
t.NumberOfLines
|
|
t.Hint
|
|
t.InsertionPoint
|
|
t.LastPosition
|
|
t.Margins
|
|
t.StringSelection
|
|
t.Value
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|