Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.ArgumentsProvider;
import org.opentest4j.TestAbortedException;

/**
* Base for defining a compiler-supplying arguments provider for Junit Jupiter parameterised test
Expand Down Expand Up @@ -124,7 +125,7 @@ private void applyConfigurers(JctCompiler<?, ?> compiler) {
for (var configurerClass : configurerClasses) {
try {
initialiseConfigurer(configurerClass).configure(compiler);
} catch (AssertionError ex) {
} catch (TestAbortedException ex) {
throw ex;
} catch (Exception ex) {
throw new JctJunitConfigurerException(
Expand Down
1 change: 1 addition & 0 deletions java-compiler-testing/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
requires static transitive org.apiguardian.api;
requires org.assertj.core;
requires static transitive org.junit.jupiter.params;
requires static org.opentest4j;
requires org.slf4j;

// Annotations is internal, but we export it for documentation purposes.
Expand Down