-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add unit test of ndt map construction sim
- Loading branch information
1 parent
b438ada
commit 547fabf
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 Map construction by NDT algorithm | ||
Author: Shisato Yano | ||
""" | ||
|
||
from pathlib import Path | ||
import sys | ||
import pytest | ||
|
||
sys.path.append(str(Path(__file__).absolute().parent) + "/../src/simulations/mapping/ndt_map_construction") | ||
import ndt_map_construction | ||
|
||
|
||
def test_simulation(): | ||
ndt_map_construction.show_plot = False | ||
|
||
ndt_map_construction.main() |