Skip to content

Commit

Permalink
add test for PF
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed Feb 3, 2018
1 parent e5c2ebe commit 841b55f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/test_particle_filter.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from unittest import TestCase

from Localization.particle_filter import particle_filter as m

print(__file__)


class Test(TestCase):

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

0 comments on commit 841b55f

Please sign in to comment.