Skip to content
Snippets Groups Projects
Commit 4f7c9a92 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

even more restrictive

parent 344ac678
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,12 @@ public class ExceptionHandlingTest {
boolean exceptionArised = false;
try {
exceptionPassingAndTermination();
} catch (AnalysisException e) {
exceptionArised = true;
}
assertTrue(exceptionArised);
exceptionArised = false;
try {
terminatesAllStages();
} catch (AnalysisException e) {
exceptionArised = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment