Skip to content

Commit

Permalink
added test
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed Feb 18, 2018
1 parent aa71466 commit c7fd4ee
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Python codes for robotics algorithm.
* [Extended Kalman Filter localization](#extended-kalman-filter-localization)
* [Unscented Kalman Filter localization](#unscented-kalman-filter-localization)
* [Particle Filter localization](#particle-filter-localization)
* [Mapping](#mapping)
* [Gaussian Grid Map](#gaussian-grid-map)
* [Path Planning](#path-planning)
* [Dynamic Window Approach](#dynamic-window-approach)
* [Grid based search](#grid-based-search)
Expand Down Expand Up @@ -120,7 +122,7 @@ This measurements are used for PF localization.

# Mapping

# Gaussian Grid Map
## Gaussian Grid Map

This is a 2D gaussian grid mapping example.

Expand Down Expand Up @@ -504,3 +506,5 @@ Atsushi Sakai ([@Atsushi_twi](https://twitter.com/Atsushi_twi))





12 changes: 12 additions & 0 deletions tests/test_gaussian_grid_map.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from unittest import TestCase

from Mapping.gaussian_grid_map import gaussian_grid_map as m

print(__file__)


class Test(TestCase):

def test1(self):
m.show_animation = False
m.main()

0 comments on commit c7fd4ee

Please sign in to comment.