1 | String getMethod(){↵ | | 1 | String getCSS() {↵
|
2 | return getPropertyAsString(METHOD);↵ | | 2 | return getPropertyAsString(REPORT_PAGE_CSS);↵
|
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){↵ | | 5 | public void setCSS(String css) {↵
|
10 | setProperty(METHOD,methodName);↵ | | 6 | setProperty(REPORT_PAGE_CSS,css);↵
|
11 | }↵ | | 7 | }↵
|
12 | ↵ | | 8 | ↵
|
13 | /**↵ | | |
|
14 | * get the success message↵ | | |
|
15 | */↵ | | |
|
16 | public String getSuccess(){↵ | | 9 | public String getHeaderURL() {↵
|
17 | return getPropertyAsString(SUCCESS);↵ | | 10 | return getPropertyAsString(REPORT_PAGE_HEADER);↵
|
18 | } | | 11 | }
|