-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented unit test of rear wheel feedback simulation
- Loading branch information
1 parent
8a1d5e6
commit fe848be
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
""" | ||
Test of Path tracking simulation by Rear wheel feedback algorithm | ||
Author: Shisato Yano | ||
""" | ||
|
||
from pathlib import Path | ||
import sys | ||
import pytest | ||
|
||
sys.path.append(str(Path(__file__).absolute().parent) + "/../src/simulations/path_tracking/rear_wheel_feedback_tracking") | ||
import rear_wheel_feedback_tracking | ||
|
||
|
||
def test_simulation(): | ||
rear_wheel_feedback_tracking.show_plot = False | ||
|
||
rear_wheel_feedback_tracking.main() |