1 | String getMethod(){↵ | | 1 | String getParameters() {↵
|
2 | return getPropertyAsString(METHOD);↵ | | 2 | return this.getPropertyAsString(↵
|
3 | }↵ | | |
|
|
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){↵ | | |
|
10 | setProperty(METHOD,methodName);↵ | | |
|
11 | }↵ | | |
|
12 | ↵ | | |
|
13 | /**↵ | | |
|
14 | * get the success message↵ | | |
|
15 | */↵ | | |
|
16 | ↵ | | 3 | PARAMETERS);↵
|
| | | 4 | }↵
|
|
| | | 5 | public void setParameters(String newScript) {↵
|
| | | 6 | this.setProperty(PARAMETERS, newScript);↵
|
| | | 7 | }↵
|
|
17 | public String getSuccess(){↵ | | 8 | public String getScriptLanguage() {↵
|
18 | return getPropertyAsString(SUCCESS);↵ | | 9 | return this.getPropertyAsString(↵
|
19 | ↵ | | 10 | LANGUAGE);↵
|
20 | } | | 11 | }
|