mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-07 18:30:57 +02:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69403 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
29 lines
622 B
Python
29 lines
622 B
Python
import imp_unittest, unittest
|
|
import wtc
|
|
import wx
|
|
import os
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class gauge_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_gauge(self):
|
|
g1 = wx.Gauge(self.frame)
|
|
g2 = wx.Gauge(self.frame, range=1000, style=wx.GA_VERTICAL)
|
|
|
|
def test_gaugeProperties(self):
|
|
g = wx.Gauge(self.frame)
|
|
|
|
g.BezelFace
|
|
g.Range
|
|
g.ShadowWidth
|
|
g.Value
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|