This post shows how to test for expected exceptions using JUnit 5. If youβre still on JUnit 4, please check out my previous post.
Letβs start with the following class that we wish to test:
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 | public class Person { private final String name; private final int age; /** * Creates a person with the specified name and age. * * @param name the name * @param age the age * @throws IllegalArgumentException if the age is not greater than zero */ public Person(String name, int age) { this.name = name; this.age = age; if (age <= 0) { throw new IllegalArgumentException("Invalid age:" + age); } }} |
To test that an IllegalArgumentException is thrown if the age of the person is less than zero, you should use JUnit 5βs assertThrows as shown below:
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import static org.hamcrest.CoreMatchers.*;import static org.hamcrest.MatcherAssert.*;import static org.junit.jupiter.api.Assertions.*;import org.junit.jupiter.api.Test;class PersonTest { @Test void testExpectedException() { assertThrows(IllegalArgumentException.class, () -> { new Person("Joe", -1); }); } @Test void testExpectedExceptionMessage() { final Exception e = assertThrows(IllegalArgumentException.class, () -> { new Person("Joe", -1); }); assertThat(e.getMessage(), containsString("Invalid age")); }} |
Related post: Testing Expected Exceptions with JUnit 4 Rules
| Published on Java Code Geeks with permission by Fahd Shariff, partner at our JCG program. See the original article here: Testing Expected Exceptions with JUnit 5 Opinions expressed by Java Code Geeks contributors are their own. |
Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy
Thank you!
We will contact you soon.
π Photo of Fahd Shariff
Fahd ShariffNovember 27th, 2020Last Updated: November 25th, 2020
Fahd ShariffNovember 27th, 2020Last Updated: November 25th, 2020
0 647 1 minute read

This site uses Akismet to reduce spam. Learn how your comment data is processed.