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 ff63439 commit 34a2785Copy full SHA for 34a2785
src/dist-check/src/test/java/org/apache/jmeter/junit/JMeterTest.java
@@ -643,6 +643,11 @@ public static Collection<Object> getObjects(Class<?> extendsClass) throws Throwa
643
// TODO: Cannot start. travis-job-e984b3d5-f93f-4b0f-b6c0-50988a5ece9d is a loopback address.
644
continue;
645
}
646
+ if (className.startsWith("org.apache.jmeter.testelement.schema.") &&
647
+ className.endsWith("PropertyDescriptor")) {
648
+ // PropertyDescriptors do not have no-arg constructor
649
+ continue;
650
+ }
651
try {
652
// Construct classes in the AWT thread, as we may have found classes, that
653
// assume to be constructed in the AWT thread.
0 commit comments