1 package integrationTests.otherControlStructures; 2 3 import org.junit.jupiter.api.Test; 4 5 import integrationTests.CoverageTest; 6 7 class TryCatchFinallyStatementsTest extends CoverageTest { 8 TryCatchFinallyStatements tested; 9 10 @Test 11 void tryCatch() { 12 tested.tryCatch(); 13 } 14 15 @Test 16 void tryCatchWhichThrowsAndCatchesException() { 17 tested.tryCatchWhichThrowsAndCatchesException(); 18 } 19 }