You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are just testing a few examples so far, with unit tests. This approach is not enough to guarantee that eval is 99.99% bug-free. Use something more thorough like quickcheck for that. If necessary, we can check the results of eval against other libraries such as meval.
The text was updated successfully, but these errors were encountered:
One last kind of test we can add is one similar to the one with glc, but instead of generating valid expressions, we would generate invalid (but "almost valid") input and see if they are all rejected (with Err, never panic).
We are just testing a few examples so far, with unit tests. This approach is not enough to guarantee that
eval
is 99.99% bug-free. Use something more thorough likequickcheck
for that. If necessary, we can check the results ofeval
against other libraries such asmeval
.The text was updated successfully, but these errors were encountered: