Problem:
Some of the tests could be rewritten better. Currently some are parameterized and others aren't. We also are capturing errors without specifying what errors we're supposed to be capturing.
Solution:
- Go through and state what errors are thrown for which tests
- Parameterize the tests that need it (Like modulus)
Considerations:
- The errors may change in the future when we do better error handling that's more human friendly.
Problem:
Some of the tests could be rewritten better. Currently some are parameterized and others aren't. We also are capturing errors without specifying what errors we're supposed to be capturing.
Solution:
Considerations: