13 lines
128 B
Python
13 lines
128 B
Python
|
import unittest
|
||
|
|
||
|
|
||
|
class TestBase(unittest.TestCase):
|
||
|
|
||
|
|
||
|
def setUp(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def tearDown(self):
|
||
|
pass
|