tests/tools/test_CustomIntCtrl.py
changeset 1850 614396cbffbf
parent 1847 6198190bc121
child 1881 091005ec69c4
equal deleted inserted replaced
1849:6811021e3d94 1850:614396cbffbf
    24 
    24 
    25 import unittest
    25 import unittest
    26 import time
    26 import time
    27 
    27 
    28 import wx
    28 import wx
    29 
       
    30 import conftest
    29 import conftest
    31 import controls.CustomIntCtrl
    30 import controls.CustomIntCtrl
    32 
    31 
    33 
    32 
    34 class TestCustomIntCtrl(unittest.TestCase):
    33 class TestCustomIntCtrl(unittest.TestCase):
   132         self.int_ctrl.SetBounds(self.min_val, self.max_val)
   131         self.int_ctrl.SetBounds(self.min_val, self.max_val)
   133         self.ProcessEvents()
   132         self.ProcessEvents()
   134 
   133 
   135 
   134 
   136 if __name__ == '__main__':
   135 if __name__ == '__main__':
       
   136     conftest.init_environment()
   137     unittest.main()
   137     unittest.main()