static private class StressTest {
final PerformanceTest performanceTest;
StressTest( final String httpPath,
final int numberOfThreads,
final int waitTime) throws Exception {
performanceTest = new PerformanceTest();
performanceTest.execute(new MyCommandFactory(httpPath), numberOfThreads, waitTime, System.out);
}