Update Robot Framework format - step 1
[integration/test.git] / csit / libraries / IoTDM / IoTDMKeywords.robot
index 3f39a51b8a5b5f886a6beb73d654833ce4e7321d..7a6eb5df645e99e06957e6136816b06d6719b6d7 100644 (file)
@@ -1,22 +1,22 @@
 *** Settings ***
-Documentation     Keywords specific for IoTDM test suites.
-Library           ./criotdm.py
-Library           OperatingSystem
-Library           iotdm_comm.py
+Documentation       Keywords specific for IoTDM test suites.
+
+Library             ./criotdm.py
+Library             OperatingSystem
+Library             iotdm_comm.py
 
-*** Variables ***
 
 *** Keywords ***
 IOTDM Basic Suite Setup
-    [Arguments]    ${odl_ip_address}    ${odl_user_name}    ${odl_password}
     [Documentation]    Set up basic test suite
+    [Arguments]    ${odl_ip_address}    ${odl_user_name}    ${odl_password}
     ${iserver} =    Connect To Iotdm    ${odl_ip_address}    ${odl_user_name}    ${odl_password}    http
     Set Suite Variable    ${iserver}
 
 Resolve Local Ip Address
     [Documentation]    Retrieve list of IP addresses of local host, try to find IP address accessible from the
     ...    host where tested ODL system is running and set it as global variable named local_ip
-    ${ip_list}    OperatingSystem.Run    hostname -I
+    ${ip_list}    OperatingSystem.Run    hostname -I
     Log    iotdm_ip: ${ODL_SYSTEM_1_IP}
     Log    hostname -I: ${ip_list}
     ${local_ip} =    Get Local Ip From List    ${ODL_SYSTEM_1_IP}    ${ip_list}