Fix test schema

This commit is contained in:
Clément Fournier
2020-06-19 22:44:56 +02:00
parent b344875247
commit eacc33d575
9 changed files with 238 additions and 208 deletions

View File

@@ -0,0 +1,25 @@
/*
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.testframework.internal;
import net.sourceforge.pmd.internal.util.xml.SchemaConstant;
/**
*
*/
public final class TestSchemaConstants {
public static final SchemaConstant EXPECTED_MESSAGES = new SchemaConstant("expected-messages");
public static final SchemaConstant MESSAGE = new SchemaConstant("message");
public static final SchemaConstant EXPECTED_LINE_NUMBERS = new SchemaConstant("expected-linenumbers");
public static final SchemaConstant RULE_PROPERTY = new SchemaConstant("rule-property");
public static final SchemaConstant USE_AUXCLASSPATH = new SchemaConstant("useAuxClasspath");
public static final SchemaConstant REGRESSION_TEST = new SchemaConstant("regressionTest");
private TestSchemaConstants() {
// utility class
}
}