6 lines
106 B
Python
6 lines
106 B
Python
import unittest
|
|
|
|
class TestCase(unittest.TestCase):
|
|
def test_one(self):
|
|
self.assertTrue(True)
|