mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 20:10:08 +01:00
updated and new unittests
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69157 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
43
unittests/test_dcclient.py
Normal file
43
unittests/test_dcclient.py
Normal file
@@ -0,0 +1,43 @@
|
||||
import imp_unittest, unittest
|
||||
import wtc
|
||||
import wx
|
||||
import sys
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
class ClientDCTests(wtc.WidgetTestCase):
|
||||
|
||||
def test_ClientDC(self):
|
||||
dc = wx.ClientDC(self.frame)
|
||||
|
||||
def test_WindowDC(self):
|
||||
dc = wx.ClientDC(self.frame)
|
||||
|
||||
|
||||
def test_PaintDC(self):
|
||||
class TestPanel(wx.Panel):
|
||||
def __init__(self, *args, **kw):
|
||||
wx.Panel.__init__(self, *args, **kw)
|
||||
#self.SetBackgroundStyle(wx.BG_STYLE_PAINT)
|
||||
self.Bind(wx.EVT_PAINT, self.onPaint)
|
||||
self.onPaintCalled = False
|
||||
|
||||
def onPaint(self, evt):
|
||||
dc = wx.PaintDC(self)
|
||||
dc.DrawLine(0,0, 50,50)
|
||||
self.onPaintCalled = True
|
||||
|
||||
panel = TestPanel(self.frame)
|
||||
self.frame.SendSizeEvent()
|
||||
panel.Refresh()
|
||||
panel.Update()
|
||||
wx.Yield()
|
||||
self.assertTrue(panel.onPaintCalled == True)
|
||||
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user