Answers for "junit5 test expected exception"

1

junit 5 expected exception

@Test
void testExpectedException() {
 
  Assertions.assertThrows(NumberFormatException.class, () -> {
    Integer.parseInt("One");
  });
 
}
Posted by: Guest on December-16-2020
0

expected exception junit

@Test(expected = SomeException.class)
public void testName() {
	//some code
}
Posted by: Guest on January-04-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language