@@ -60,6 +60,18 @@ public interface LauncherConfig {
60
60
*/
61
61
boolean isTestEngineAutoRegistrationEnabled ();
62
62
63
+ /**
64
+ * Determine if launcher discovery listeners should be discovered at runtime
65
+ * using the {@link java.util.ServiceLoader ServiceLoader} mechanism and
66
+ * automatically registered.
67
+ *
68
+ * @return {@code true} if launcher discovery listeners should be
69
+ * automatically registered
70
+ * @since 1.8
71
+ */
72
+ @ API (status = EXPERIMENTAL , since = "1.8" )
73
+ boolean isLauncherDiscoveryListenerAutoRegistrationEnabled ();
74
+
63
75
/**
64
76
* Determine if test execution listeners should be discovered at runtime
65
77
* using the {@link java.util.ServiceLoader ServiceLoader} mechanism and
@@ -77,6 +89,7 @@ public interface LauncherConfig {
77
89
*
78
90
* @return {@code true} if post discovery filters should be automatically
79
91
* registered
92
+ * @since 1.7
80
93
*/
81
94
@ API (status = EXPERIMENTAL , since = "1.7" )
82
95
boolean isPostDiscoveryFilterAutoRegistrationEnabled ();
@@ -105,6 +118,7 @@ public interface LauncherConfig {
105
118
*
106
119
* @return the collection of additional post discovery filters; never
107
120
* {@code null} but potentially empty
121
+ * @since 1.7
108
122
*/
109
123
@ API (status = EXPERIMENTAL , since = "1.7" )
110
124
Collection <PostDiscoveryFilter > getAdditionalPostDiscoveryFilters ();
@@ -123,22 +137,35 @@ static Builder builder() {
123
137
*/
124
138
class Builder {
125
139
126
- private boolean listenerAutoRegistrationEnabled = true ;
127
-
128
140
private boolean engineAutoRegistrationEnabled = true ;
129
-
141
+ private boolean launcherDiscoveryListenerAutoRegistrationEnabled = true ;
142
+ private boolean testExecutionListenerAutoRegistrationEnabled = true ;
130
143
private boolean postDiscoveryFilterAutoRegistrationEnabled = true ;
131
-
132
144
private final Collection <TestEngine > engines = new LinkedHashSet <>();
133
-
134
145
private final Collection <TestExecutionListener > listeners = new LinkedHashSet <>();
135
-
136
146
private final Collection <PostDiscoveryFilter > postDiscoveryFilters = new LinkedHashSet <>();
137
147
138
148
private Builder () {
139
149
/* no-op */
140
150
}
141
151
152
+ /**
153
+ * Configure the auto-registration flag for launcher discovery
154
+ * listeners.
155
+ *
156
+ * <p>Defaults to {@code true}.
157
+ *
158
+ * @param enabled {@code true} if launcher discovery listeners should be
159
+ * automatically registered
160
+ * @return this builder for method chaining
161
+ * @since 1.8
162
+ */
163
+ @ API (status = EXPERIMENTAL , since = "1.8" )
164
+ public Builder enableLauncherDiscoveryListenerAutoRegistration (boolean enabled ) {
165
+ this .launcherDiscoveryListenerAutoRegistrationEnabled = enabled ;
166
+ return this ;
167
+ }
168
+
142
169
/**
143
170
* Configure the auto-registration flag for test execution listeners.
144
171
*
@@ -149,7 +176,7 @@ private Builder() {
149
176
* @return this builder for method chaining
150
177
*/
151
178
public Builder enableTestExecutionListenerAutoRegistration (boolean enabled ) {
152
- this .listenerAutoRegistrationEnabled = enabled ;
179
+ this .testExecutionListenerAutoRegistrationEnabled = enabled ;
153
180
return this ;
154
181
}
155
182
@@ -175,6 +202,7 @@ public Builder enableTestEngineAutoRegistration(boolean enabled) {
175
202
* @param enabled {@code true} if post discovery filters should be automatically
176
203
* registered
177
204
* @return this builder for method chaining
205
+ * @since 1.7
178
206
*/
179
207
@ API (status = EXPERIMENTAL , since = "1.7" )
180
208
public Builder enablePostDiscoveryFilterAutoRegistration (boolean enabled ) {
@@ -217,6 +245,7 @@ public Builder addTestExecutionListeners(TestExecutionListener... listeners) {
217
245
* @param filters additional post discovery filters to register;
218
246
* never {@code null} or containing {@code null}
219
247
* @return this builder for method chaining
248
+ * @since 1.7
220
249
*/
221
250
@ API (status = EXPERIMENTAL , since = "1.7" )
222
251
public Builder addPostDiscoveryFilters (PostDiscoveryFilter ... filters ) {
@@ -231,9 +260,10 @@ public Builder addPostDiscoveryFilters(PostDiscoveryFilter... filters) {
231
260
* builder.
232
261
*/
233
262
public LauncherConfig build () {
234
- return new DefaultLauncherConfig (this .engineAutoRegistrationEnabled , this .listenerAutoRegistrationEnabled ,
235
- this .postDiscoveryFilterAutoRegistrationEnabled , this .engines , this .listeners ,
236
- this .postDiscoveryFilters );
263
+ return new DefaultLauncherConfig (this .engineAutoRegistrationEnabled ,
264
+ this .launcherDiscoveryListenerAutoRegistrationEnabled ,
265
+ this .testExecutionListenerAutoRegistrationEnabled , this .postDiscoveryFilterAutoRegistrationEnabled ,
266
+ this .engines , this .listeners , this .postDiscoveryFilters );
237
267
}
238
268
239
269
}
0 commit comments