1 | String getMethod(){↵ | | 1 | String getYLabel() {↵
|
2 | return getPropertyAsString(METHOD);↵ | | 2 | return getPropertyAsString(REPORT_CHART_Y_LABEL);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | ↵
|
5 | * Method should add the JUnit testXXX method to the list at↵ | | 5 | ↵
|
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 messag↵ | | 6 | public void setYLabel(String label) {↵
|
| | | 7 | setProperty(REPORT_CHART_Y_LABEL,label);↵
|
| | | 8 | }↵
|
| | | 9 | ↵
|
| | | 10 | /**↵
|
| | | 11 | * The title is a the name for the chart. A page link will↵
|
| | | 12 | * be generated using the title. The title will also be↵
|
| | | 13 | * used for a page index.↵
|
15 | e↵ | | 14 | * @return chart title↵
|
16 | */↵ | | 15 | */↵
|
17 | public String getSuccess(){↵ | | 16 | public String getTitle() {↵
|
18 | return getPropertyAsString(SUCCESS);↵ | | 17 | return getPropertyAsString(REPORT_CHART_TITLE);↵
|
19 | | | 18 |
|