1 | String getFailureCode(){↵ | | 1 | String getFooterURL() {↵
|
2 | return getPropertyAsString(FAILURECODE);↵ | | 2 | return getPropertyAsString(REPORT_PAGE_FOOTER);↵
|
3 | }↵ | | 3 | }↵
|
4 | ↵ | | 4 | ↵
|
5 | /**↵ | | |
|
6 | * Provide some unique code to denote a type of failure↵ | | |
|
7 | * @param code↵ | | |
|
8 | */↵ | | |
|
9 | public void setFailureCode(String code){↵ | | 5 | public void setFooterURL(String url) {↵
|
10 | setProperty(FAILURECODE,code);↵ | | 6 | setProperty(REPORT_PAGE_FOOTER,url);↵
|
11 | }↵ | | 7 | }↵
|
|
12 | /**↵ | | 8 | ↵
|
13 | * return the descriptive error for the test↵ | | |
|
14 | */↵ | | |
|
15 | public String getError(){↵ | | 9 | public String getIntroduction() {↵
|
16 | return getPropertyAsString(ERROR);↵ | | 10 | return getPropertyAsString(REPORT_PAGE_INTRO);↵
|
17 | } | | 11 | }
|