blob: d167a5dea90e12929e612dae7715fd4911afe8e6 [file] [log] [blame]
/*
*/
package org.apache.tomcat.lite.load;
import org.apache.tomcat.lite.http.LiveHttp1Test;
import junit.framework.TestSuite;
public class LiveHttp5Test extends LiveHttp1Test {
/**
* Want to run the same tests few times.
*/
public static TestSuite suite() {
TestSuite s = new TestSuite();
for (int i = 0; i < 5; i++) {
s.addTestSuite(LiveHttp1Test.class);
}
return s;
}
public void test100() throws Exception {
for (int i = 0; i < 100; i++) {
testSimpleRequest();
tearDown();
setUp();
notFound();
tearDown();
setUp();
testSimpleRequest();
tearDown();
setUp();
}
}
}