|
|
@ -88,6 +88,9 @@ class ReadFunction(unittest.TestCase): |
|
|
|
def test_simplify_exponential_function_negative_exponent(self): |
|
|
|
self.assertEqual(simplify_exponential_function("e", "2x^-2"), ["-4x^-3"]) |
|
|
|
|
|
|
|
def test_simplify_product_function_2_multiplicators(self): |
|
|
|
self.assertEqual(simplify_product_function("p", "x*x"), ["x^2"]) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
unittest.main() |