mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-04 17:00:22 +02:00
22 lines
489 B
Python
22 lines
489 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
import wx.lib.agw.zoombar as ZB
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class lib_agw_zoombar_Tests(wtc.WidgetTestCase):
|
|
|
|
def test_lib_agw_zoombarCtor(self):
|
|
zb = ZB.ZoomBar(self.frame)
|
|
|
|
def test_lib_agw_thumbnailctrlEvents(self):
|
|
ZB.EVT_ZOOMBAR
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|