1 | String getMethod(){↵ | | 1 | String getFooterURL() {↵
|
2 | return getPropertyAsString(METHOD);↵ | | 2 | return getPropertyAsString(REPORT_PAGE_FOOTER);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | ↵
|
5 | * Method should add the JUnit testXXX method to the list at↵ | | |
|
6 | * the end, since the sequence matters.↵ | | |
|
7 | * @param methodName↵ | | |
|
8 | */↵ | | |
|
9 | public void setMethod(String methodName){↵ | | |
|
10 | setProperty(METHOD,methodName);↵ | | |
|
11 | }↵ | | |
|
12 | ↵ | | |
|
13 | /**↵ | | |
|
14 | * get the success message↵ | | |
|
15 | */↵ | | |
|
| | | 5 | public void setFooterURL(String url) {↵
|
| | | 6 | setProperty(REPORT_PAGE_FOOTER,url);↵
|
| | | 7 | }↵
|
| | | 8 | ↵
|
16 | public String getSuccess(){↵ | | 9 | public String getIntroduction() {↵
|
17 | return getPropertyAsString(SUCCESS);↵ | | 10 | return getPropertyAsString(REPORT_PAGE_INTRO);↵
|
18 | } | | 11 | }
|