Testcase level variables in [Documentation] for robot framework
I cannot get test level variables to appear in documentation. Let's say I have this testsuite: | *Variables* | | ${SystemUnderTest} = | Staging | *testcase* | | Device Test | | | Set Test Variable | ${device} | iPhone | | [Documentation] | Device is: ${device} | | | ... | System is: ${SystemUnderTest} | | | No Operation That produces this log: TEST CASE: Device TestExpand All Full Name: T.Device Test Documentation: Device is: ${device} System is: Staging Notice that the Suite level variable is treated properly, but the test level one is not. How do I get all variables to be treated equally?