12 lines
205 B
Python
12 lines
205 B
Python
|
#!/usr/bin/env python3
|
||
|
import unittest, sys
|
||
|
sys.path.append(".")
|
||
|
sys.path.append("src/")
|
||
|
|
||
|
|
||
|
class TestTemplate(unittest.TestCase):
|
||
|
def test_my_test(self):
|
||
|
self.assertTrue(True)
|
||
|
|
||
|
unittest.main()
|