You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case of earlier failures, the validation exception is no longer
reported as suppressed.
Resolves#3054.
---------
Co-authored-by: Marc Philipp <[email protected]>
Copy file name to clipboardExpand all lines: junit-jupiter-api/src/main/java/org/junit/jupiter/api/extension/ClassTemplateInvocationContextProvider.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,8 @@ public interface ClassTemplateInvocationContextProvider extends Extension {
90
90
* invoked; never {@code null}
91
91
* @return a {@code Stream} of {@code ClassTemplateInvocationContext}
92
92
* instances for the invocation of the class template; never {@code null}
93
+
* @throws TemplateInvocationValidationException if a validation fails when
94
+
* while providing or closing the {@link java.util.stream.Stream}.
Copy file name to clipboardExpand all lines: junit-jupiter-api/src/main/java/org/junit/jupiter/api/extension/TestTemplateInvocationContextProvider.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,8 @@ public interface TestTemplateInvocationContextProvider extends Extension {
86
86
* to be invoked; never {@code null}
87
87
* @return a {@code Stream} of {@code TestTemplateInvocationContext}
88
88
* instances for the invocation of the test template method; never {@code null}
89
+
* @throws TemplateInvocationValidationException if a validation fails when
90
+
* while providing or closing the {@link java.util.stream.Stream}.
0 commit comments