Skip to content
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

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft

Conversation

rahulKQL
Copy link
Owner

removed deprecated ExpectedException.none() usage across unit test cases.


@Test
@Test(expected = IllegalArgumentException.class)
Copy link

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.

Copy link
Owner Author

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)
Copy link

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.

removed deprecated `ExpectedException.none()` usage across unit test cases.

chore: address feedback comments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants