A.assertTrue()B.assertFalse()C.assertRaises()D.assertIs()
单项选择题在PyTest中,以下哪个函数可以测试一个函数是否引发了指定的异常()
A.pytest.raises()B.pytest.assert_called()C.pytest.assert_raises()D.pytest.expect_exception()
单项选择题在使用PyTest进行单元测试时,下列哪种方式可以标识一个测试函数()
A.使用test 装饰器B.使用pytest.mark.test 标记C.使用def test_开头的函数名D.使用def test()的函数名
单项选择题以下哪个选项可以在PyTest中设置测试用例执行的顺序()
A.使用pytest.mark.parametrizeB.使用pytest.mark.dependencyC.使用pytest.mark.xfailD.无法设置测试用例执行的顺序
单项选择题在Pytest中,哪个插件用于生成测试覆盖率报告()
A.pytest-coverageB.pytest-htmlC.pytest-xdistD.pytest-flask
单项选择题在Pytest中哪个命令用于生成测试报告()
A.pytest reportB.pytest summaryC.pytest junitxmlD.pytest html
单项选择题在Pytest中,哪个函数用于在测试用例运行之前执行一次性设置()
A.setup()B.before_test()C.teardown()D.setup_method()
单项选择题在Pytest中,哪个断言用于比较两个值是否相等()
A.assertB.assertEqualC.assertAlmostEqualD.assertNotEqual
单项选择题在PyTest中,测试文件应该以什么为前缀()
A.testB.pyC.testfileD.testcase
单项选择题在PyTest中,如何使用断言()
A.使用assert语句B.使用check()函数C.使用verify()函数D.使用expect()函数
单项选择题在PyTest中,如何使用fixture()
A.使用pytest.mark.fixture 标注B.使用pytest.fixture 标注C.使用pytest.use_fixture 标注D.使用pytest.testfixture 标注
单项选择题在PyTest中,如何运行测试用例()
A.运行python test.py命令B.运行pytest test.py命令C.运行unittest test.py命令D.运行test.py命令
单项选择题在PyTest中,如何定义测试用例()
A.使用test标注B.使用pytest.mark标注C.使用pytest.test标注D.使用unittest.TestCase标注
单项选择题安装PyTest的最佳方式是什么()
A.使用pip安装B.使用conda安装C.从源代码编译安装D.下载二进制文件并安装
单项选择题PyTest使用哪种语言编写()
A.JavaB.PythonC.RubyD.C++
单项选择题PyTest的assert语句与Python的assert语句有什么不同()
A.PyTest的assert语句更加简洁B.PyTest的assert语句可以提供更多的信息C.PyTest的assert语句可以与其他框架集成D.没有不同