mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 22:38:09 -05:00
add test
This commit is contained in:
14
tests/test_n_joint_arm_to_point_control.py
Normal file
14
tests/test_n_joint_arm_to_point_control.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from unittest import TestCase
|
||||
|
||||
from ArmNavigation.n_joint_arm_to_point_control import n_joint_arm_to_point_control as m
|
||||
import sys
|
||||
sys.path.append("./ArmNavigation/n_joint_arm_to_point_control/")
|
||||
|
||||
print(__file__)
|
||||
|
||||
|
||||
class Test(TestCase):
|
||||
|
||||
def test1(self):
|
||||
m.show_animation = False
|
||||
m.animation()
|
||||
Reference in New Issue
Block a user