-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add data-driven tests for binary operators #231
Comments
Not blocking the 0.1.0 release. Moving forward. |
I think this is accomplished well enough for 0.2.0, so I'll close this now. As for these:
...we'll cover them in a separate issue, if/when we decide to do something similar there. ( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#230 added data-driven tests for comparison operators. Similar work could be done elsewhere as well:
Data driven tests with test data for all types currently supported in the language
Addition
andSubtraction
: (tests) Add full type coverage for+
and-
operators #317AdditionAssignment
andSubtractionAssignment
: (tests) Add full type coverage for+=
and-=
operators #319Exponential
: (tests) Add full type coverage for**
operator #323Modulo
: (tests) Add full type coverage for%
operator #324Multiplication
andDivision
: (tests) Add full type coverage for*
and/
operators #318Equal
andNotEqual
: (tests) Add full type coverage for==
and!=
operators #320ShiftLeft
andShiftRight
: (tests) Add full type coverage for<<
and>>
operators #325Less
andLessEqual
: (tests) Add full type coverage for<
and<=
operators #321Greater
andGreaterEqual
: (tests) Add full type coverage for>
and>=
operators #322Non-binary operators which would also be good to cover at some point
PostfixDecrement
PostfixIncrement
The text was updated successfully, but these errors were encountered: