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