14 lines
287 B
Python
14 lines
287 B
Python
import sys
|
|
from pathlib import Path
|
|
# Add the project root to sys.path
|
|
sys.path.append(str(Path(__file__).resolve().parent.parent))
|
|
|
|
import unittest
|
|
|
|
class AngleTest(unittest.TestCase):
|
|
def test_one(self):
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |