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