diff options
author | 2017-04-07 11:09:51 +0530 | |
---|---|---|
committer | 2017-04-07 11:09:51 +0530 | |
commit | b81cbf6b9371659c3befc9129bf5ec8824356eb4 (patch) | |
tree | ef650054cd35fa0abe4b1588191c04b0622c5658 /vnf-sdk-function-test/src/main | |
parent | a149ae2c0417ef957cee3acbbdd080317021439b (diff) |
Add unit tests
Resolved:VNFSDK-21
VNF SDK Function tests
Change-Id: I6f71110083a87f82918e7c51dbb1a835988abe74
Signed-off-by: Murali-P <murali.p@huawei.com>
Diffstat (limited to 'vnf-sdk-function-test/src/main')
-rw-r--r-- | vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/constants/ApplicationConstants.java | 56 |
1 files changed, 36 insertions, 20 deletions
diff --git a/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/constants/ApplicationConstants.java b/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/constants/ApplicationConstants.java index 7fcd5f7..5f7e0f7 100644 --- a/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/constants/ApplicationConstants.java +++ b/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/constants/ApplicationConstants.java @@ -17,24 +17,40 @@ package org.openo.vnfsdk.functest.constants; public class ApplicationConstants { - - private ApplicationConstants() { - } - - public static final String USER_DIR = "user.dir"; - public static final String ROBOT = "robot"; - public static final String ROBOT_SPACE = "robot "; - public static final String CONF = "conf"; - public static final String ROBOTMETADATA_JSON = "robotMetaData.json"; - public static final String JSON_METADATA_FILE_FAILED = "Reading Json Meta data file failed or file do not exist"; - public static final String DIR_RESULT = "DIR_RESULT"; - public static final String SCRIPT_DIR = "SCRIPT_DIR"; - public static final String DIR_REMOTE = "DIR_REMOTE"; - public static final String DIR_REMOTE_RESULT = "DIR_REMOTE_RESULT"; - public static final String MAIN_SCRIPT = "MAIN_SCRIPT"; - public static final String SHELL_COMMAND = "cmd.exe /c "; - public static final String SHELL_COMMAND_BASH = "bash "; - public static final String CHARACTER = "character ..."; - public static final String TASKEXE_EXESCRIPT_EXCEPTION = "TaskExecution ... executeScript() ... [Exception] ..."; - public static final String RUN_SCRIPT_EXECUTE_CMD = "Upload the script and execute the script and run command"; + + public static final String USER_DIR = "user.dir"; + + public static final String ROBOT = "robot"; + + public static final String ROBOT_SPACE = "robot "; + + public static final String CONF = "conf"; + + public static final String ROBOTMETADATA_JSON = "robotMetaData.json"; + + public static final String JSON_METADATA_FILE_FAILED = "Reading Json Meta data file failed or file do not exist"; + + public static final String DIR_RESULT = "DIR_RESULT"; + + public static final String SCRIPT_DIR = "SCRIPT_DIR"; + + public static final String DIR_REMOTE = "DIR_REMOTE"; + + public static final String DIR_REMOTE_RESULT = "DIR_REMOTE_RESULT"; + + public static final String MAIN_SCRIPT = "MAIN_SCRIPT"; + + public static final String SHELL_COMMAND = "cmd.exe /c "; + + public static final String SHELL_COMMAND_BASH = "bash "; + + public static final String CHARACTER = "character ..."; + + public static final String TASKEXE_EXESCRIPT_EXCEPTION = "TaskExecution ... executeScript() ... [Exception] ..."; + + public static final String RUN_SCRIPT_EXECUTE_CMD = "Upload the script and execute the script and run command"; + + private ApplicationConstants() { + } + } |