/**
* create application test.
*
* @param testPlanWrapper test plan.
*/
public ApplicationTest(TestPlanWrapper testPlanWrapper) {
... }
/**
* create application test.
*
* @param testPlanWrapper test plan.
* @param prepareInterceptors interceptors.
*/
public ApplicationTest(
TestPlanWrapper testPlanWrapper, List<PrepareInterceptor> prepareInterceptors) {
. . .
}
/**
* Generate Jmx file.
*
* @param out Destination output.
* @throws IOException โ If an I/O error occurs.
*/
public TestElementWrapper toJmx(Writer out) throws IOException {
. . .
}
/**
* Generate Jmx file.
*
* @param file Destination output.
* @throws IOException โ If an I/O error occurs.
*/
public TestElementWrapper toJmx(File file) throws IOException {
. . .
}
/**
* Execute test.
*
* @throws IOException โ If an I/O error occurs.
*/
public void run() throws IOException {
. . .
}