-
-
Notifications
You must be signed in to change notification settings - Fork 733
MatrixTest, LuhnValidatorTest, PangramCheckerTest #3018
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
Conversation
This PR touches files which potentially affect the outcome of the tests of an exercise. This will cause all students' solutions to affected exercises to be re-tested. If this PR does not affect the result of the test (or, for example, adds an edge case that is not worth rerunning all tests for), please add the following to the merge-commit message which will stops student's tests from re-running. Please copy-paste to avoid typos.
For more information, refer to the documentation. If you are unsure whether to add the message or not, please ping |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed you added an extra *
before Character.getNumericValue()
in the comment. Could you please revert that back to the original
/* The following test diverges from the canonical test data. This is because the corresponding canonical test does | ||
* not account for Java specific functions (such as Character.getNumericValue()), which can be part of incorrect yet | ||
* not account for Java specific functions (such as * Character.getNumericValue()), which can be part of incorrect yet | ||
* passing implementations. For more detail, check out issue #972 here: | ||
* (https://github.com/exercism/java/issues/972). | ||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/* The following test diverges from the canonical test data. This is because the corresponding canonical test does | |
* not account for Java specific functions (such as Character.getNumericValue()), which can be part of incorrect yet | |
* not account for Java specific functions (such as * Character.getNumericValue()), which can be part of incorrect yet | |
* passing implementations. For more detail, check out issue #972 here: | |
* (https://github.com/exercism/java/issues/972). | |
*/ | |
/* The following test diverges from the canonical test data. This is because the corresponding canonical test does | |
* not account for Java specific functions (such as Character.getNumericValue()), which can be part of incorrect yet | |
* passing implementations. For more detail, check out issue #972 here: | |
* (https://github.com/exercism/java/issues/972). | |
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, could you add this @DisplayName("string containing symbols is invalid (Java track specific)")
tag to the last test (since it’s Java-specific, you wouldn’t have found one for it in the problem-specifications repo), and slightly adjust the method name to testStringContainingSymbolsIsInvalidJavaTrackSpecific()
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, I’ve reverted as requested. Please check and confirm. I must have added that * accidentally, sorry for the inconvenience.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you also add the last DisplayName
tag for the Java-specific test? I've provided the information above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your guidance and for accepting my changes. This was my first contribution to an open-source project, and I really appreciate the support.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You’re very welcome! Thanks for making your first contribution here. It’s always great to see new contributors getting involved. Congrats on your first PR, and we hope to see more from you in the future!
* MatrixTest, LuhnValidatorTest, PangramCheckerTest * change * MatrixTest, LuhnValidatorTest, PangramCheckerTest * MatrixTest, LuhnValidatorTest, PangramCheckerTest * MatrixTest, LuhnValidatorTest, PangramCheckerTest [no important files changed]
pull request
Hello, I am new to open source contribution. This is my first contribution.
I have gone through README, Code of conduct, and Contributing.
Added @DisplayName() annotation in MatrixTest, LuhnValidatorTest, PangramCheckerTest.
Passed all test cases, checks, and compileStarterTestJava.
Reviewer Resources:
Track Policies