一个面向对象的测试框架。

pitest的Python项目详细描述


Build status

一个面向对象的测试框架。

安装

来自PIP3:

$ pip3 install --upgrade rstcheck

来源:

$ python3 setup.py --quiet install

测试

先安装pitest软件包,然后:

$ cd unittests
$ python3 -m unittest

用法示例

  1. 编写测试用例:
importpitestclassMyTestCase(pitest.TestCaseBase):# By default, test methods are methods whose names start with 'test_'. You# can change the matching patterns by defining the 'test_patterns' class# variable by uncommenting the following line:#       test_patterns = [ 'mytest_*', 'yourtest_*' ]# The start * means it matches anything, just like the command line glob.# If test methods have inter-dependencies, i.e., certain tests must precede# some other tests, you can define the dependencies using the# 'internal_deps' class variable. Here is an example:#       internal_deps = { 'test_foo1': [ 'test_bar1*', 'test_bar2*' ],#                         'test_hel*lo': [ 'test_no', 'test_yes*' ],#                       }# If this test case depend on other test cases, you can specify their# dependencies via the 'deps' class variable. Here is an example:#       deps = [ 'MyTestCase1', 'MyTestCaseFoo*', ]# When you reference other test cases, you do NOT need to import the files# that define the referenced test cases. But if they cannot be found by the# end of the day, error will occur.def__init__(self[,*args[,**kwargs]]):pass# Run once before running all test methods.defsetup_instance(self[,*args[,**kwargs]]):pass# Run once after running all test methods.defteardown_instance(self[,*args[,**kwargs]]):pass# Run once before running every single test method.defsetup(self[,*args[,**kwargs]]):pass# Run once after running every single test method.defteardown(self[,*args[,**kwargs]]):pass# Actual test methods, names matching 'test_patterns'.deftest_foo_something(self[,*args[,**kwargs]]):passdeftest_foo_something_else(self[,*args[,**kwargs]]):passdeftest_bar_something(self[,*args[,**kwargs]]):passdeftest_bar_something_else(self[,*args[,**kwargs]]):pass
  1. 写入参数文件
importpitest__pitest_main_default_args_name__='my_args'my_args=pitest.TestCaseArgs()my_args.set_method_args('__init__',args=('Anndee',),kwargs={'kwarg0':'KoolArg'})my_args.set_method_args('test',args=('naathing',),kwargs={'kwarg1':'at owl'})my_args2=pitest.TestCaseArgs()my_args2.set_method_args('__init__',args=('Bashii',),kwargs={'kwarg0':'KoolArg2'})my_args2.set_method_args('test',args=('naathing',),kwargs={'kwarg1':'at owlll'})
  1. 运行测试用例

发现测试:

$ python3 -m pitest discover (case | method | all)

运行测试:

$ python3 -m pitest run (case | method) name

扫描给定目录:

$ python3 -m pitest --start-dir some/dir ...

使用动态参数运行测试:

$ python3 -m pitest run case MyTestCase --args-file my_args.py

在文件中使用非默认参数对象:

$ python3 -m pitest run case MyTestCase --args-file my_args.py \
                                        --args-name my_args2

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java JTable无法向新创建的列添加值   java如何调整JEditorPane中编辑区域的大小?   Java通过反射确定未知数组中的数组大小   java Intellij Idea有时无法按其预期的方式构建应用程序   java Swing GUI带有IntelliJ错误“contentPane不能设置为null”从终端编译时   如何将这些通用方法调用从C#转换为Java   在null上找不到java属性或字段“index”   从Java HashMap获取整数值时是否需要调用intValue()方法?   java Android谷歌地图获取相机中的图像块   unix无法捕获JAVA中“who m”命令的输出   java,同时将邮件发送到“收件人”标题“我”中的多个收件人   在java中向链表添加未知数量的节点   无法为Heroku上的discord bot设置java端口   java使用Apache HttpClient进行选项请求   与元素类型“ApplicationName”关联的属性“Application Version”需要java Open quote   Android Studio Java中的两个变量求和