1 | String getXLabel() {↵ | | 1 | String getMethod(){↵
|
2 | return getPropertyAsString(REPORT_CHART_X_LABEL);↵ | | 2 | return getPropertyAsString(METHOD);↵
|
3 | }↵ | | 3 | }↵
|
4 | ↵ | | |
|
5 | /**↵ | | 4 | /**↵
|
6 | * The X data labels should be either the filename, date or some↵ | | 5 | * Method should add the JUnit testXXX method to the list at↵
|
7 | * other series of values↵ | | 6 | * the end, since the sequence matters.↵
|
8 | * @param label↵ | | 7 | * @param methodName↵
|
9 | */↵ | | 8 | */↵
|
10 | public void setXLabel(String label) {↵ | | 9 | public void setMethod(String methodName){↵
|
11 | setProperty(REPORT_CHART_X_LABEL,label);↵ | | 10 | setProperty(↵
|
12 | }↵ | | |
|
13 | ↵ | | 11 | METHOD,methodName);↵
|
| | | 12 | }↵
|
| | | 13 | ↵
|
| | | 14 | /**↵
|
| | | 15 | * get the success message↵
|
| | | 16 | */↵
|
14 | public String getYLabel() {↵ | | 17 | public String getSuccess(){↵
|
15 | return getPropertyAsString(REPORT_CHART_Y_LABEL);↵ | | 18 | return getPropertyAsString(SUCCESS);↵
|
16 | | | 19 |
|