基本信息
源码名称:Python Mock库
源码大小:0.06M
文件格式:.gz
开发语言:Python
更新时间:2023-04-22
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
Python Mock库
Python单元测试库,A mock object is created to represent a real object for the purposes of a unit test. Using a mock object rather than the real object can be useful if the real object is difficult to ...
文件清单
└── pmock-0.3
├── doc
│ ├── api
│ │ ├── epydoc.css
│ │ ├── index.html
│ │ ├── private
│ │ │ ├── __builtin__.object-class.html
│ │ │ ├── __builtin__.type-class.html
│ │ │ ├── epydoc.css
│ │ │ ├── exceptions.AssertionError-class.html
│ │ │ ├── exceptions.Exception-class.html
│ │ │ ├── exceptions.StandardError-class.html
│ │ │ ├── frames.html
│ │ │ ├── help.html
│ │ │ ├── index.html
│ │ │ ├── indices.html
│ │ │ ├── pmock.AbstractArgumentsMatcher-class.html
│ │ │ ├── pmock.AllArgumentsMatcher-class.html
│ │ │ ├── pmock.AtLeastOnceInvocationMatcher-class.html
│ │ │ ├── pmock.BoundMethod-class.html
│ │ │ ├── pmock.DefaultStub-class.html
│ │ │ ├── pmock.DefinitionError-class.html
│ │ │ ├── pmock.EqConstraint-class.html
│ │ │ ├── pmock.Error-class.html
│ │ │ ├── pmock.FunctorConstraint-class.html
│ │ │ ├── pmock.Invocation-class.html
│ │ │ ├── pmock.InvocationMockerBuilder-class.html
│ │ │ ├── pmock.InvocationMocker-class.html
│ │ │ ├── pmock.InvokedAfterMatcher-class.html
│ │ │ ├── pmock.InvokedRecorderMatcher-class.html
│ │ │ ├── pmock.LeastArgumentsMatcher-class.html
│ │ │ ├── pmock.MatchError-class.html
│ │ │ ├── pmock.MethodMatcher-class.html
│ │ │ ├── pmock.Mock-class.html
│ │ │ ├── pmock.MockTestCase-class.html
│ │ │ ├── pmock-module.html
│ │ │ ├── pmock.NotCalledInvocationMatcher-class.html
│ │ │ ├── pmock.OnceInvocationMatcher-class.html
│ │ │ ├── pmock.Proxy-class.html
│ │ │ ├── pmock.RaiseExceptionStub-class.html
│ │ │ ├── pmock.ReturnValueStub-class.html
│ │ │ ├── pmock.SameConstraint-class.html
│ │ │ ├── pmock.StringContainsConstraint-class.html
│ │ │ ├── pmock.StubInvocationMatcher-class.html
│ │ │ ├── pmock.VerificationError-class.html
│ │ │ ├── toc-everything.html
│ │ │ ├── toc.html
│ │ │ ├── toc-pmock-module.html
│ │ │ ├── trees.html
│ │ │ └── unittest.TestCase-class.html
│ │ └── public
│ │ ├── __builtin__.object-class.html
│ │ ├── __builtin__.type-class.html
│ │ ├── epydoc.css
│ │ ├── exceptions.AssertionError-class.html
│ │ ├── exceptions.Exception-class.html
│ │ ├── exceptions.StandardError-class.html
│ │ ├── frames.html
│ │ ├── help.html
│ │ ├── index.html
│ │ ├── indices.html
│ │ ├── pmock.Mock-class.html
│ │ ├── pmock.MockTestCase-class.html
│ │ ├── pmock-module.html
│ │ ├── toc-everything.html
│ │ ├── toc.html
│ │ ├── toc-pmock-module.html
│ │ ├── trees.html
│ │ └── unittest.TestCase-class.html
│ ├── index.html
│ └── overview.html
├── examples
│ ├── errors.py
│ └── greeting.py
├── setup.py
├── src
│ ├── acceptance_tests.py
│ ├── pmock.py
│ ├── testsupport.py
│ └── unit_tests.py
└── TODO
7 directories, 74 files
Python Mock库
Python单元测试库,A mock object is created to represent a real object for the purposes of a unit test. Using a mock object rather than the real object can be useful if the real object is difficult to ...
文件清单
└── pmock-0.3
├── doc
│ ├── api
│ │ ├── epydoc.css
│ │ ├── index.html
│ │ ├── private
│ │ │ ├── __builtin__.object-class.html
│ │ │ ├── __builtin__.type-class.html
│ │ │ ├── epydoc.css
│ │ │ ├── exceptions.AssertionError-class.html
│ │ │ ├── exceptions.Exception-class.html
│ │ │ ├── exceptions.StandardError-class.html
│ │ │ ├── frames.html
│ │ │ ├── help.html
│ │ │ ├── index.html
│ │ │ ├── indices.html
│ │ │ ├── pmock.AbstractArgumentsMatcher-class.html
│ │ │ ├── pmock.AllArgumentsMatcher-class.html
│ │ │ ├── pmock.AtLeastOnceInvocationMatcher-class.html
│ │ │ ├── pmock.BoundMethod-class.html
│ │ │ ├── pmock.DefaultStub-class.html
│ │ │ ├── pmock.DefinitionError-class.html
│ │ │ ├── pmock.EqConstraint-class.html
│ │ │ ├── pmock.Error-class.html
│ │ │ ├── pmock.FunctorConstraint-class.html
│ │ │ ├── pmock.Invocation-class.html
│ │ │ ├── pmock.InvocationMockerBuilder-class.html
│ │ │ ├── pmock.InvocationMocker-class.html
│ │ │ ├── pmock.InvokedAfterMatcher-class.html
│ │ │ ├── pmock.InvokedRecorderMatcher-class.html
│ │ │ ├── pmock.LeastArgumentsMatcher-class.html
│ │ │ ├── pmock.MatchError-class.html
│ │ │ ├── pmock.MethodMatcher-class.html
│ │ │ ├── pmock.Mock-class.html
│ │ │ ├── pmock.MockTestCase-class.html
│ │ │ ├── pmock-module.html
│ │ │ ├── pmock.NotCalledInvocationMatcher-class.html
│ │ │ ├── pmock.OnceInvocationMatcher-class.html
│ │ │ ├── pmock.Proxy-class.html
│ │ │ ├── pmock.RaiseExceptionStub-class.html
│ │ │ ├── pmock.ReturnValueStub-class.html
│ │ │ ├── pmock.SameConstraint-class.html
│ │ │ ├── pmock.StringContainsConstraint-class.html
│ │ │ ├── pmock.StubInvocationMatcher-class.html
│ │ │ ├── pmock.VerificationError-class.html
│ │ │ ├── toc-everything.html
│ │ │ ├── toc.html
│ │ │ ├── toc-pmock-module.html
│ │ │ ├── trees.html
│ │ │ └── unittest.TestCase-class.html
│ │ └── public
│ │ ├── __builtin__.object-class.html
│ │ ├── __builtin__.type-class.html
│ │ ├── epydoc.css
│ │ ├── exceptions.AssertionError-class.html
│ │ ├── exceptions.Exception-class.html
│ │ ├── exceptions.StandardError-class.html
│ │ ├── frames.html
│ │ ├── help.html
│ │ ├── index.html
│ │ ├── indices.html
│ │ ├── pmock.Mock-class.html
│ │ ├── pmock.MockTestCase-class.html
│ │ ├── pmock-module.html
│ │ ├── toc-everything.html
│ │ ├── toc.html
│ │ ├── toc-pmock-module.html
│ │ ├── trees.html
│ │ └── unittest.TestCase-class.html
│ ├── index.html
│ └── overview.html
├── examples
│ ├── errors.py
│ └── greeting.py
├── setup.py
├── src
│ ├── acceptance_tests.py
│ ├── pmock.py
│ ├── testsupport.py
│ └── unit_tests.py
└── TODO
7 directories, 74 files