-
Notifications
You must be signed in to change notification settings - Fork 195
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 9 new exceptional tests #541
Conversation
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 equivalent additions should be made to the https://github.com/arquillian/arquillian-jakarta repo that has the newer jakarta package namespace.
Hi @starksm64 , Thanks, I plan to send more tests in that repo in the next few days. |
Add new exceptional tests (arquillian#541)
@@ -468,6 +468,16 @@ public String get() { | |||
}); | |||
} | |||
|
|||
@Test(expected = IllegalArgumentException.class) | |||
public void shouldThrowExceptionIfDescriptorIsNull() { | |||
new PropertiesParser().addProperties(null, System.getProperties()); |
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 indentation is completly off in all the changes FYI, please fix this next time. Thanks!
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.
Ah, even worse, these are tabs, but unfortunately, this project uses spaces...
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.
Ah, even worse, these are tabs, but unfortunately, this project uses spaces...
Nothing unfortunate about that. It's what Charles Babbage would have wanted... :P
Short description of what this resolves:
Add exceptional tests to existing test files. See issue
Changes proposed in this pull request:
Fixes #542