mirror of
https://github.com/kristoferssolo/Traffic-Light-Detector.git
synced 2025-10-21 20:00:36 +00:00
11 lines
143 B
Python
11 lines
143 B
Python
import unittest
|
|
|
|
|
|
class TestTask(unittest.TestCase):
|
|
def test_nothing(self):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|