add test on eval

This commit is contained in:
Lafrite 2014-12-21 19:13:34 +01:00
parent 108c794a04
commit 1729ef1d24
1 changed files with 15 additions and 2 deletions

View File

@ -7,11 +7,15 @@ import unittest
from pymath.polynom import Polynom
from pymath.fraction import Fraction
from pymath.expression import Expression
from pymath.render import txt
class TestPolynom(unittest.TestCase):
"""Testing functions from pymath.polynom"""
def setup(self):
Expression.set_render(txt)
def test_init(self):
p = Polynom([1, 2, 3], "x")
@ -27,8 +31,17 @@ class TestPolynom(unittest.TestCase):
def test_deg(self):
pass
def test_eval(self):
pass
def test_eval_base(self):
p = Polynom([1, 2])
self.assertEqual(p(3).simplified(), 7)
def test_eval_const(self):
p = Polynom([1])
self.assertEqual(p(3).simplified(), 1)
def test_eval_const_neg(self):
p = Polynom([-1])
self.assertEqual(p(3).simplified(), -1)
#def test_print(self):
# p = Polynom([1,2,3])