How do I use JUnitPerf with JWebUnit and JUnit 4? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T18:26:47Z http://stackoverflow.com/feeds/question/95506 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/95506/how-do-i-use-junitperf-with-jwebunit-and-junit-4 2 How do I use JUnitPerf with JWebUnit and JUnit 4? Steve Moyer 2008-09-18T18:41:24Z 2008-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#99351 4 Answer by alexguev for How do I use JUnitPerf with JWebUnit and JUnit 4? alexguev 2008-09-19T03:39:12Z 2008-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&lt;?&gt; junit4TestClass; public JUnit4TestFactory(Class&lt;?&gt; 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>