Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find tests for math parser/engine?

Currently i support math parser/engine library (i.e. library that can parse and evaluate expressions). I've already written some jUnit tests but I want 100% test cover. It seems that this tasks must be already solved in the past but i didn't find any tests in the Internet. The preferred form of tests is text files so I can parse them manually or programmatically but if there are pdf, docs or whatever it also be OK.

It would be great if tests will contain not only arithmetic operations but also symbolic calculations, integration and differentiation tests.

like image 852
se.solovyev Avatar asked Dec 04 '25 07:12

se.solovyev


1 Answers

I've found a bunch of tests in the apache commons library here: hope it will cover all cases.

like image 132
se.solovyev Avatar answered Dec 05 '25 21:12

se.solovyev