mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-10 05:28:07 -05:00
* refactor: rename files and update references for inverted pendulum and path tracking modules * refactor: rename inverted pendulum control files and update type check references * refactor: update import statements to use consistent casing for InvertedPendulum module
15 lines
300 B
Python
15 lines
300 B
Python
import conftest # Add root path to sys.path
|
|
from PathTracking.move_to_pose import move_to_pose as m
|
|
|
|
|
|
def test_1():
|
|
"""
|
|
This unit test tests the move_to_pose_robot.py program
|
|
"""
|
|
m.show_animation = False
|
|
m.main()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|