10 lines
188 B
Python
10 lines
188 B
Python
import unittest
|
|
import car.tracking as tracking
|
|
|
|
class TestLidarCache(unittest.TestCase):
|
|
|
|
def test_fake_scanner(self):
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |