diff options
author | Mariusz Wagner <mariusz.wagner@nokia.com> | 2018-05-24 14:14:39 +0200 |
---|---|---|
committer | Mariusz Wagner <mariusz.wagner@nokia.com> | 2018-05-24 14:14:39 +0200 |
commit | a50b911ad18155bc6d77d7260e83d5178b456957 (patch) | |
tree | fc46994b0921a01157e1c3cf08a9328b3ee80cee /test/csit/tests/dcaegen2/prh_testcases/resources/PrhVariables.py | |
parent | 8053f360cab41003739bb3023b63027aa4cb60be (diff) |
Initial commit with robotframework
Robotframework python files to be used in tests.
At this moment it tests nothing
Issue-ID: INT-510
Change-Id: Icbd6a6ffcbdb28755b26cad3a2b8c6d163f77c38
Signed-off-by: Mariusz Wagner <mariusz.wagner@nokia.com>
Diffstat (limited to 'test/csit/tests/dcaegen2/prh_testcases/resources/PrhVariables.py')
-rw-r--r-- | test/csit/tests/dcaegen2/prh_testcases/resources/PrhVariables.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/csit/tests/dcaegen2/prh_testcases/resources/PrhVariables.py b/test/csit/tests/dcaegen2/prh_testcases/resources/PrhVariables.py new file mode 100644 index 000000000..882a4b9ce --- /dev/null +++ b/test/csit/tests/dcaegen2/prh_testcases/resources/PrhVariables.py @@ -0,0 +1,18 @@ +''' +Created on Apr 27, 2018 + +@author: mwagner9 +''' + +import os + +def GetEnvironmentVariable(envVarstr): + return os.environ.get(envVarstr) + +DMaaPHttpServerThread = None +DMaaPHTTPD = None +DMaaPIsRobotRun = False + +AAIHttpServerThread = None +AAIHTTPD = None +AAIIsRobotRun = False |