| |
|
| java.lang.Object org.jzonic.webtester.commands.WebTestNodeResult
WebTestNodeResult | public class WebTestNodeResult (Code) | | This class represents the result of a WebTestNode. This is
the result for one single step in the testcase.
author: Mecky |
WebTestNodeResult | public WebTestNodeResult(String command)(Code) | | |
getCommand | public String getCommand()(Code) | | Returns the command name for this WebTestNode
the name of the command |
getErrorMessage | public String getErrorMessage()(Code) | | Returns the error message if the WebTestNode has failed.
The error message is set by the WebTestNode.
the error message |
getException | public Exception getException()(Code) | | If the test raised an exception then this method
will return the exception caught by the WebTestNode
the exception |
getLineNumber | public int getLineNumber()(Code) | | |
isSuccess | public boolean isSuccess()(Code) | | Returns the state of the result
true if the test was successfull |
setErrorMessage | public void setErrorMessage(String errorMessage)(Code) | | |
setLineNumber | public void setLineNumber(int lineNumber)(Code) | | |
setSuccess | public void setSuccess(boolean success)(Code) | | |
|
|
|