base.py (128B)
1 import unittest 2 3 4 class TestBase(unittest.TestCase): 5 6 7 def setUp(self): 8 pass 9 10 11 def tearDown(self): 12 pass