public interface TestStepResult
A TestStep result
Modifiers | Name | Description |
---|---|---|
enum |
TestStepResult.TestStepStatus |
Type Params | Return Type | Name and description |
---|---|---|
|
public void |
discard() Can discard any result data that may be taking up memory. |
|
public ActionList |
getActions() Returns a list of actions that can be applied to this result |
|
public java.lang.Throwable |
getError() |
|
public java.lang.String |
getFileName() Returns the name of test step results file created by test runner |
|
public JMSTestStep |
getJmsTestStep() |
|
public java.lang.String[] |
getMessages() |
|
public long |
getSize() Used for calculating throughput |
|
public TestStepResult.TestStepStatus |
getStatus() |
|
public TestStep |
getTestStep() |
|
public long |
getTimeStamp() |
|
public long |
getTimeTaken() |
|
public boolean |
isDiscarded() |
|
public void |
setFileName(java.lang.String fileName) Sets the name of test step results file created by test runner |
|
public void |
writeTo(java.io.PrintWriter writer) Writes this result to the specified writer, used for logging. |
|
public void |
writeToBase(java.io.PrintWriter writer) Writes this result to the specified writer, used for logging. |
Can discard any result data that may be taking up memory. Timing-values must not be discarded.
Returns a list of actions that can be applied to this result
Returns the name of test step results file created by test runner
Used for calculating throughput
Sets the name of test step results file created by test runner
fileName
- name of corresponding step results fileWrites this result to the specified writer, used for logging.
Writes this result to the specified writer, used for logging. For base class only.