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-platform-launcher/src/main/java/org/junit/platform/launcher/core/LauncherDiscoveryRequestBuilder.java
+38-34Lines changed: 38 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,7 @@ public LauncherDiscoveryRequestBuilder() {
124
124
}
125
125
126
126
/**
127
-
* Add all of the supplied {@code selectors} to the request.
127
+
* Add all supplied {@code selectors} to the request.
128
128
*
129
129
* @param selectors the {@code DiscoverySelectors} to add; never {@code null}
130
130
* @return this builder for method chaining
@@ -136,7 +136,7 @@ public LauncherDiscoveryRequestBuilder selectors(DiscoverySelector... selectors)
136
136
}
137
137
138
138
/**
139
-
* Add all of the supplied {@code selectors} to the request.
139
+
* Add all supplied {@code selectors} to the request.
140
140
*
141
141
* @param selectors the {@code DiscoverySelectors} to add; never {@code null}
142
142
* @return this builder for method chaining
@@ -149,7 +149,7 @@ public LauncherDiscoveryRequestBuilder selectors(List<? extends DiscoverySelecto
149
149
}
150
150
151
151
/**
152
-
* Add all of the supplied {@code filters} to the request.
152
+
* Add all supplied {@code filters} to the request.
153
153
*
154
154
* <p>The {@code filters} are combined using AND semantics, i.e. all of them
155
155
* have to include a resource for it to end up in the test plan.
@@ -185,7 +185,7 @@ public LauncherDiscoveryRequestBuilder configurationParameter(String key, String
185
185
}
186
186
187
187
/**
188
-
* Add all of the supplied configuration parameters to the request.
188
+
* Add all supplied configuration parameters to the request.
189
189
*
190
190
* @param configurationParameters the map of configuration parameters to add;
191
191
* never {@code null}
@@ -206,23 +206,46 @@ public LauncherDiscoveryRequestBuilder configurationParameters(Map<String, Strin
206
206
* {@link #configurationParameters(Map)} takes precedence over the supplied
207
207
* configuration parameters.
208
208
*
209
-
* @param configurationParameters the parent instance to be used for looking
209
+
* @param parentConfigurationParameters the parent instance to use for looking
210
210
* up configuration parameters that have not been explicitly configured;
0 commit comments