How do I use JUnitPerf with JWebUnit and JUnit 4? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T18:26:47Zhttp://stackoverflow.com/feeds/question/95506http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/95506/how-do-i-use-junitperf-with-jwebunit-and-junit-42How do I use JUnitPerf with JWebUnit and JUnit 4?Steve Moyer2008-09-18T18:41:24Z2008-09-19T03:39:12Z
<p>I have a series of functional tests against a web application that correctly run, but each require the class level setup and teardown provided with the @BeforeClass and @AfterClass annotations, and hence require JUnit 4.0 or above.</p>
<p>Now I want to perform load testing using a small number of these functional tests, which simulate a large number of users requesting the related page of the web application. In order for each user to have their own "simulated browser" in JWebUnit, I need to use a TestFactory in JUnitPerf to instantiate the class under test, but since JUnit 4 tests are annotated with @Test instead of being derived from TestCase, I'm getting a "TestFactory must be constructed with a TestCase class" exception.</p>
<p>Is anyone successfully using JUnitPerf and its TestFactory with JUnit 4? And what is the secret sauce that lets it all work?</p>
http://stackoverflow.com/questions/95506/how-do-i-use-junitperf-with-jwebunit-and-junit-4/99351#993514Answer by alexguev for How do I use JUnitPerf with JWebUnit and JUnit 4?alexguev2008-09-19T03:39:12Z2008-09-19T03:39:12Z<p>You need a JUnit4 aware TestFactory. I've included one below.</p>
<pre><code>import junit.framework.JUnit4TestAdapter;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import com.clarkware.junitperf.TestFactory;
class JUnit4TestFactory extends TestFactory {
static class DummyTestCase extends TestCase {
public void test() {
}
}
private Class<?> junit4TestClass;
public JUnit4TestFactory(Class<?> testClass) {
super(DummyTestCase.class);
this.junit4TestClass = testClass;
}
@Override
protected TestSuite makeTestSuite() {
JUnit4TestAdapter unit4TestAdapter = new JUnit4TestAdapter(this.junit4TestClass);
TestSuite testSuite = new TestSuite("JUnit4TestFactory");
testSuite.addTest(unit4TestAdapter);
return testSuite;
}
}
</code></pre>