Skip to content

Commit

Permalink
import test target module
Browse files Browse the repository at this point in the history
  • Loading branch information
ShisatoYano committed Nov 28, 2023
1 parent 84569ec commit 63f2917
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/test_extended_kalman_filter_localizer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"""
Unit test of ExtendedKalmanFilterLocalizer
Author: Shisato Yano
"""

import matplotlib as mpl
mpl.use("Agg")
import matplotlib.pyplot as plt
import pytest
import sys
from pathlib import Path

sys.path.append(str(Path(__file__).absolute().parent) + "/../src/components/localization/kalman_filter")
from extended_kalman_filter_localizer import ExtendedKalmanFilterLocalizer

0 comments on commit 63f2917

Please sign in to comment.