Files
Phoenix/unittests/test_lib_agw_zoombar.py
2016-12-05 16:19:11 -06:00

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()