1# SPDX-License-Identifier: Apache-2.0
2
3*** Settings ***
4Resource                      ${KEYWORDS}
5
6*** Test Cases ***
7Should Read Version From Shell
8    # `Prepare Machine` keyword comes from $ZEPHYR_BASE/tests/robot/common.robot file, which is imported as a resource
9    Prepare Machine
10    Start Emulation
11    Wait For Prompt On Uart   uart:~$
12    Write Line To Uart        version
13    Wait For Line On Uart     Zephyr version
14