11 lines
133 B
Python
11 lines
133 B
Python
import unittest
|
|
|
|
|
|
class StartTestCase(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_equal(self):
|
|
pass
|