*** Settings ***
| Library | rwb.DebugLibrary

*** Test Cases ***
| Example case #1
| | Set suite variable | ${message} | Hello from test case #1
| | breakpoint | breakpoint in test case #1
| | log | after the break, message is '${message}'

| Example test case #2
| | log | this will fail
| | Set variable | ${message} | Hello from test case #2
| | fail | oh my goodness!

| Example test case #3
| | Set suite variable | ${message} | Hello from test case #3
| | breakpoint | you have broken test case 3!
| | log | test case #3 is done.
