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
Copy file name to clipboardExpand all lines: junit-jupiter-api/src/main/java/org/junit/jupiter/api/extension/TestTemplateInvocationContextProvider.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -93,19 +93,19 @@ public interface TestTemplateInvocationContextProvider extends Extension {
93
93
94
94
/**
95
95
* Signal that this provider may provide zero
96
-
* {@linkplain TestTemplateInvocationContext invocation contexts} in the
97
-
* supplied {@code context}.
96
+
* {@linkplain TestTemplateInvocationContext invocation contexts} for the test
97
+
* template method represented by the supplied {@code context}.
98
98
*
99
99
* <p>If this method returns {@code false} (which is the default) and the
100
100
* provider returns an empty stream from
101
101
* {@link #provideTestTemplateInvocationContexts}, this will be considered
102
-
* an execution error. Override this method to ignore the absence of
103
-
* invocation contexts for this provider.
102
+
* an execution error. Override this method to return {@code true} to ignore
103
+
* the absence of invocation contexts for this provider.
104
104
*
105
105
* @param context the extension context for the test template method about
106
106
* to be invoked; never {@code null}
107
107
* @return {@code true} to allow zero contexts, {@code false} to fail
0 commit comments