Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I write a test that fails when an unexpected exception is thrown?

0
Posted

How do I write a test that fails when an unexpected exception is thrown?

0

Declare the exception in the throws clause of the test method and don’t catch the exception within the test method. Uncaught exceptions will cause the test to fail. The following is an example test that fails when the IndexOutOfBoundsException is raised: public void testIndexOutOfBoundsExceptionNotRaised() throws IndexOutOfBoundsException { ArrayList list = new ArrayList(10); Object o = list.

0

Declare the exception in the throws clause of the test method and don’t catch the exception within the test method. Uncaught exceptions will cause the test to fail with an error.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123