org.opengis.cite.ogcapiprocesses10.TestRunArg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ets-ogcapi-processes10 Show documentation
Show all versions of ets-ogcapi-processes10 Show documentation
Describe purpose of test suite.
package org.opengis.cite.ogcapiprocesses10;
/**
* An enumerated type defining all recognized test run arguments.
*
* @author bpr
*/
public enum TestRunArg {
/**
* An absolute URI that refers to a representation of the test subject or metadata
* about it.
*/
IUT,
/**
* The number of collections to test (a value less or equal to 0 means all
* collections).
*/
NOOFCOLLECTIONS,
/**
* The id of the echo process.
*/
ECHOPROCESSID,
/**
* Limit of processes to be tested against the OGC Process Description Conformance
* Class.
*/
PROCESSTESTLIMIT,
/**
* Use local OpenAPI schema.
*/
USELOCALSCHEMA,
/**
* Boolean indicating whether all processes should be tested against the OGC Process
* Description Conformance Class.
*/
TESTALLPROCESSES;
/** {@inheritDoc} */
@Override
public String toString() {
return name().toLowerCase();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy