1 | String getMethod(){↵ | | 1 | String getYAxis() {↵
|
2 | return getPropertyAsString(METHOD);↵ | | 2 | return getPropertyAsString(REPORT_CHART_Y_AXIS);↵
|
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 setYAxis(String scale) {↵
|
10 | setProperty(METHOD,methodName);↵ | | 6 | setProperty(↵
|
11 | }↵ | | |
|
12 | ↵ | | |
|
13 | /**↵ | | |
|
14 | * get the success message↵ | | |
|
15 | */↵ | | 7 | REPORT_CHART_Y_AXIS,scale);↵
|
| | | 8 | }↵
|
|
16 | public String getSuccess(){↵ | | 9 | public String getXLabel() {↵
|
17 | return getPropertyAsString(SUCCESS);↵ | | 10 | return getPropertyAsString(REPORT_CHART_X_LABEL);↵
|
18 | }↵ | | 11 | }↵
|
19 | ↵ | | 12 | ↵
|
20 | /**↵ | | 13 | /**↵
|
21 | * set the success message↵ | | 14 | * The X data labels should be either the filename, date or some↵
|
| | | 15 | * other series of values↵
|
22 | * @param success↵ | | 16 | * @param label↵
|
23 | */↵ | | 17 | */↵
|
24 | public void setSuccess(String success){↵ | | 18 | public void setXLabel(String label) {↵
|
25 | setProperty(SUCCESS,success);↵ | | 19 | setProperty(REPORT_CHART_X_LABEL,label);↵
|
26 | | | 20 |
|