14 lines
184 B
Python
14 lines
184 B
Python
import unittest
|
|
|
|
|
|
class UnitTests(unittest.TestCase):
|
|
def test_a(self):
|
|
assert True
|
|
|
|
def test_b(self):
|
|
assert True
|
|
|
|
|
|
def test_c():
|
|
assert True
|