Skip to content

Create Test Case

***Test Cases***
001 create first test case
    [Documentation]    create simple test case
    ${name}   set variable    suthiphong
    ${surname}   set variable    kong
    Log to console    ${name}_${surname}

002 create second test case
    Define name
    Define surname
    Combine Name and Surname then log to console

*** Keywords ***
Define name
    ${name}   set variable    suthiphong
    set test variable    ${name}

Define surname
    ${surname}   set variable    thaisuriya
    set test variable    ${surname}

Combine Name and Surname then log to console
    Log to console    ${name}_${surname}