Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed Jan 7, 2018
1 parent 1247996 commit 3387ca9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/test_quintic_polynomials_planner.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from unittest import TestCase

from PathPlanning.QuinticPolynomialsPlanner import quintic_polynomials_planner as m

print(__file__)


class Test(TestCase):

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

0 comments on commit 3387ca9

Please sign in to comment.