Indeed, if you look at:
the line:
```
| COMMAND "${JAVA_EXECUTABLE}" |
| -cp "${CLASSPATH}" |
| runSupportedParallel "${NAME}" |
| ${NUM_TRHEADS} ${SBML_LEVEL} ${SBML_VERSION} |
| WORKING_DIRECTORY "${SRC_DIR}" |
```
is doing what you want:
so you will simply run the runSupportedParallel class with the arguments:
* name of the registered wrapper
* number of threads to use
* sbml level
* sbml version
For this to work the `testsuite-core.jar`, `simple-xml-2.6.4.jar` and the folder containing the class file have to be in the classpath.
best
Frank