| java.lang.Object org.jaffa.tools.loadtest.TestResultLogger
TestResultLogger | public class TestResultLogger (Code) | | author: MaheshD |
Method Summary | |
public synchronized void | output(int threadNo, int iteration, String startTime, String endTime, String duration, String testCase, String success) Writes out the Result Set to the file. |
TestResultLogger | public TestResultLogger(String webRoot, String fileName)(Code) | | Creates a new instance of TestResultLogger
Parameters: fileName - File name to which the Test Results are written |
output | public synchronized void output(int threadNo, int iteration, String startTime, String endTime, String duration, String testCase, String success)(Code) | | Writes out the Result Set to the file.
Parameters: threadNo - thread number which it is running Parameters: iteration - which Iteration its running Parameters: startTime - the start time of the unit test Parameters: endTime - the end time of the unit test Parameters: duration - time taken for the unit test to run in milliseconds Parameters: testCase - name of the test case . |
|
|