gpt4 book ai didi

robotframework - 使用 "Test Template"(数据驱动)时每个测试用例的文档

转载 作者:行者123 更新时间:2023-12-04 10:40:12 28 4
gpt4 key购买 nike

使用“测试模板”时,如何将[文档]设置为生成的测试用例?

我有一个解决方法:

*** Settings ***
Test Template The Test Logic

*** Test Cases *** arg1 arg2 documentation
Test Case 1 1 a Doc of test 1
Test Case 2 2 b Doc of test 2
Test Case 3 3 c Doc of test 3


*** Keywords ***
The Test Logic
[Arguments] ${arg1} ${arg2} ${documentation}
Set Test Documentation ${documentation}
Log Many ${arg1} ${arg2}

但我认为应该有一种更原生的方式。
我找不到这样的方法。有人知道吗?

最佳答案

我认为可用的最佳解决方案就是这样。

*** Settings ***
Test Template The Test Logic

*** Test Cases *** arg1 arg2
Test Case 1 1 a
Test Case 2 2 b
Test Case 3 3 c


*** Keywords ***
The Test Logic
[Arguments] ${arg1} ${arg2}
Set Test Documentation Test case covering scenario of ${arg1} and ${arg2}
Log Many ${arg1} ${arg2}

关于robotframework - 使用 "Test Template"(数据驱动)时每个测试用例的文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59966636/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com