1 | String getScript() {↵ | | 1 | String getFailureCode(){↵
|
2 | return this.getPropertyAsString(SCRIPT);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | ↵ | | 3 | FAILURECODE);↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
| | | 6 | /**↵
|
| | | 7 | * Provide some unique code to denote a type of failure↵
|
| | | 8 | * @param code↵
|
| | | 9 | */↵
|
5 | public void setScript(String newScript) {↵ | | 10 | public void set↵
|
6 | this.setProperty(SCRIPT, newScript);↵ | | |
|
7 | }↵ | | |
|
|
8 | ↵ | | 11 | FailureCode(String code){↵
|
| | | 12 | setProperty(FAILURECODE,code);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * return the descriptive error for the test↵
|
| | | 16 | */↵
|
9 | public String getParameters() {↵ | | 17 | public String getError(){↵
|
10 | return this.getPropertyAsString(PARAMETERS);↵ | | 18 | return getPropertyAsString(↵
|
11 | | | 19 | ERROR);↵
|
| | | 20 |
|