Skip to content

Commit

Permalink
Adding Pytest for Binary Occupancy Grid
Browse files Browse the repository at this point in the history
  • Loading branch information
shantanuparabumd committed Jan 31, 2025
1 parent 4e302cb commit 7775253
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test/test_binary_occupancy_grid.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""
Test of Binary Map Construction
Author: Shantanu Parab
"""

from pathlib import Path
import sys
import pytest

sys.path.append(str(Path(__file__).absolute().parent) + "/../src/components/mapping/grid")
import binary_occupancy_grid


def test_simulation():
binary_occupancy_grid.show_plot = False
binary_occupancy_grid.main()

0 comments on commit 7775253

Please sign in to comment.