用户可以使用如下函数在测试报告中对每一条测试用例设置结构化的输出内容
TestCaseDescription
添加测试用例的描述文本
此函数用于测试用例中,描述文本会添加在固定区域(测试用例title的下方)。多次调用该函数,描述文本会合并显示在固定区域。如果想让描述文本换行,可以插入换行符"\n"
testcase TCExample()
{
testCaseDescription("This is demo test case!!!");
testStep("", "step 1");
testCaseDescription("\nThis is demo test case!!!");
}
void MainTest ()
{
TCExample();
}
打印结果为:
换行符"\n"插在文末和文首输出的结果完全不同,上面是在文首,下面是文末
testcase TCExample()
{
testCaseDescription("This is demo test case!!!\n");
testStep("", "step 1");
testCaseDescription("This is demo test case!!!");
}
void MainTest ()
{
TCExample();
}