-
Notifications
You must be signed in to change notification settings - Fork 0
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
test: cleaning up deprecated usages #23
base: master
Are you sure you want to change the base?
Conversation
|
||
@Test | ||
@Test(expected = IllegalArgumentException.class) |
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 can't simply remove these. They need to be replaced with a try-catch block and a fail.
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.
Thanks for pointing it out, PTAL
@@ -81,16 +77,14 @@ public void testWithTransportChannel() { | |||
Truth.assertThat(context.getChannel()).isSameInstanceAs(channel); | |||
} | |||
|
|||
@Test | |||
@Test(expected = IllegalArgumentException.class) |
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.
same here and below all.
7694668
to
9489a08
Compare
removed deprecated `ExpectedException.none()` usage across unit test cases. chore: address feedback comments
9489a08
to
bb4a7b7
Compare
removed deprecated
ExpectedException.none()
usage across unit test cases.