-
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unit test of sensor auto calibration sim passed
- Loading branch information
1 parent
bc8fc45
commit 7e9df78
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 Automated Sensor Calibration by UKF | ||
Author: Shisato Yano | ||
""" | ||
|
||
from pathlib import Path | ||
import sys | ||
import pytest | ||
|
||
sys.path.append(str(Path(__file__).absolute().parent) + "/../src/simulations/perception/sensor_auto_calibration") | ||
import sensor_auto_calibration | ||
|
||
|
||
def test_simulation(): | ||
sensor_auto_calibration.show_plot = False | ||
|
||
sensor_auto_calibration.main() |