diff options
author | BjornMagnussonXA <bjorn.magnusson@est.tech> | 2020-09-07 14:06:35 +0200 |
---|---|---|
committer | Paweł Wieczorek <p.wieczorek2@samsung.com> | 2020-09-14 13:53:48 +0000 |
commit | 52bcf1e293486e2b50f51f68df79740d2036e666 (patch) | |
tree | b344dd3aba8264abab6f532e8ba5d7832987c10b /tests/ccsdk/oran/suite1/test1.robot | |
parent | ab47e4ec20150af344d183ed97b14cb54454c74c (diff) |
CSIT Policy Management
CSIT test case using FTC1 and applicable ONAP images
Change-Id: I7d3e382644f1b2e1de320931e24068976515cd4f
Issue-ID: CCSDK-2700
Signed-off-by: BjornMagnussonXA <bjorn.magnusson@est.tech>
Change-Id: I0571b3eb857b0347963af2b982a7de79f0ea78da
Diffstat (limited to 'tests/ccsdk/oran/suite1/test1.robot')
-rw-r--r-- | tests/ccsdk/oran/suite1/test1.robot | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/ccsdk/oran/suite1/test1.robot b/tests/ccsdk/oran/suite1/test1.robot deleted file mode 100644 index 10e68521..00000000 --- a/tests/ccsdk/oran/suite1/test1.robot +++ /dev/null @@ -1,30 +0,0 @@ -*** Settings *** -Library OperatingSystem -Library RequestsLibrary - -*** Variables *** -${MESSAGE} Hello, world! - -*** Test Cases *** -String Equality Test - Should Be Equal ${MESSAGE} Hello, world! - -Dir Test - [Documentation] Check if /tmp exists - Log ${MESSAGE} - CheckDir /tmp - -Url Test - [Documentation] Check if google.com can be reached - CheckUrl http://www.google.com - -*** Keywords *** -CheckDir - [Arguments] ${path} - Directory Should Exist ${path} - -CheckUrl - [Arguments] ${url} - Create Session session ${url} - ${resp}= Get Request session / - Should Be Equal As Integers ${resp.status_code} 200 |