A.测试应用程序的功能是否符合要求B.测试应用程序的安全性C.测试应用程序的可靠性D.测试应用程序在不同负载下的性能表现
单项选择题Pytest可以通过哪个命令行参数指定运行测试用例的数量()
A.collect-onlyB.maxfailC.countD.numprocesses
单项选择题在Allure测试报告中,哪个部分可以显示测试用例的执行历史()
A.SummaryB.EnvironmentC.Test casesD.Attachments
单项选择题在PyTest中,可以使用哪个装饰器来指定测试用例的优先级()
A.pytest.allure.priority()B.pytest.allure.severity()C.pytest.mark.priority()D.pytest.mark.severity()
单项选择题如何在PyTest中使用allure进行测试()
A.使用pytest-allure插件B.使用pytest-report插件C.使用pytest-html插件D.使用pytest-xdist插件
单项选择题allure是一种什么类型的测试报告工具()
A.命令行工具B.图形化工具C.数据分析工具D.代码审查工具
单项选择题Allure测试报告框架可以生成什么类型的测试报告()
A.HTML报告B.JSON报告C.XML报告D.以上都是
单项选择题Pytest是一种什么类型的测试框架()
A.单元测试框架B.集成测试框架C.端到端测试框架D.手动测试框架
单项选择题如何在PyTest中跳过测试用例()
A.使用pytest.ignore(reason)装饰器B.使用pytest.skip(reason)装饰器C.使用pytest.fail(reason)装饰器D.使用pytest.pass(reason)装饰器
单项选择题PyTest中如何运行单个测试模块()
A.pytest test_module.pyB.pytest test_moduleC.pytest -m test_moduleD.pytest -k test_module
单项选择题下面哪个是PyTest中用于判断是否不抛出异常的断言()
A.assertRaisesB.assertDoesNotRaiseC.assertWarnsD.assertDoesNotWarn