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 |
|