mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-07 10:20:32 +02:00
21 lines
439 B
Python
21 lines
439 B
Python
import unittest
|
|
import wtc
|
|
import wx
|
|
import sys
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class dcprint_tests(wtc.WidgetTestCase):
|
|
|
|
def test_PrinterDC1(self):
|
|
dc = wx.PrinterDC(wx.PrintData())
|
|
dc.DrawLine(0,0, 50,50)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|