com.clarkware.junitperf

Class TestMethodFactory

public class TestMethodFactory extends TestFactory

The TestMethodFactory class is a TestFactory that creates thread-local TestSuite instances containing a specific test method of a TestCase.

A typical usage scenario is as follows:

 Test factory = new TestMethodFactory(YourTestCase.class, "testSomething");
 LoadTest test = new LoadTest(factory, numberOfUsers, ...);
 ...
 

Author: Mike Clark Clarkware Consulting, Inc.

See Also: TestFactory LoadTest

Constructor Summary
TestMethodFactory(Class testClass, String testMethodName)
Constructs a TestMethodFactory instance.
Method Summary
protected TestSuitemakeTestSuite()

Constructor Detail

TestMethodFactory

public TestMethodFactory(Class testClass, String testMethodName)
Constructs a TestMethodFactory instance.

Parameters: testClass The TestCase class to load test. testMethodName The name of the test method to load test.

Method Detail

makeTestSuite

protected TestSuite makeTestSuite()
Copyright B) 1999-2005 Clarkware Consulting, Inc.