Skip to content

Commit 63a476f

Browse files
committed
add test
1 parent cf4ab5a commit 63a476f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from unittest import TestCase
2+
3+
from ArmNavigation.n_joint_arm_to_point_control import n_joint_arm_to_point_control as m
4+
import sys
5+
sys.path.append("./ArmNavigation/n_joint_arm_to_point_control/")
6+
7+
print(__file__)
8+
9+
10+
class Test(TestCase):
11+
12+
def test1(self):
13+
m.show_animation = False
14+
m.animation()

0 commit comments

Comments
 (0)