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++