summaryrefslogtreecommitdiffstats
path: root/adapters/mso-adapter-utils/src/test/java/org/onap
AgeCommit message (Expand)AuthorFilesLines
2
#Robot functions that will be shared also with other tests

*** Keywords ***
json_from_file
#Robot function to extract the json object from a file
    [Arguments]    ${file_path}
    ${json_file}=    Get file    ${file_path}
    ${json_object}=    Evaluate    json.loads('''${json_file}''')    json
    [