Skip to content

Commit 13e172d

Browse files
committed
add pure_pursuit test
1 parent d703c49 commit 13e172d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/test_pure_pursuit.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from unittest import TestCase
2+
from PathTracking.pure_pursuit import pure_pursuit as m
3+
4+
print("pure_pursuit test")
5+
6+
7+
class Test(TestCase):
8+
9+
def test1(self):
10+
m.show_animation = False
11+
m.main()

0 commit comments

Comments
 (0)