|
|
@ -70,6 +70,9 @@ class ReadFunction(unittest.TestCase): |
|
|
|
def test_easy_function_linear_constant_gets_simplified_negative_coefficient(self): |
|
|
|
self.assertEqual(simplify_easy_math_function("v", "-42x+42^(2)+1-3*4/3"), [1761, "-42x"]) |
|
|
|
|
|
|
|
def test_simplify_exponential_function_exponent_not_1_not_0(self): |
|
|
|
self.assertEqual(simplify_exponential_function("e", "x^2"), ["2x"]) |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
unittest.main() |