Skip to content

Commit 976bcb6

Browse files
committed
add test
1 parent 20e5ebc commit 976bcb6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tests/test_raycasting_grid_map.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from unittest import TestCase
2+
3+
from Mapping.raycasting_grid_map import raycasting_grid_map as m
4+
5+
print(__file__)
6+
7+
8+
class Test(TestCase):
9+
10+
def test1(self):
11+
m.show_animation = False
12+
m.main()

0 commit comments

Comments
 (0)