10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba7f6a7 commit 248ac22Copy full SHA for 248ac22
junit-platform-launcher/src/main/java/org/junit/platform/launcher/listeners/UniqueIdTrackingListener.java
@@ -134,6 +134,10 @@ public class UniqueIdTrackingListener implements TestExecutionListener {
134
135
private boolean enabled;
136
137
+ public UniqueIdTrackingListener() {
138
+ // to avoid missing-explicit-ctor warning
139
+ }
140
+
141
@Override
142
public void testPlanExecutionStarted(TestPlan testPlan) {
143
this.enabled = testPlan.getConfigurationParameters().getBoolean(LISTENER_ENABLED_PROPERTY_NAME).orElse(false);
0 commit comments