Pythonic library for QuickCheck-style randomized testing and SmallCheck-style exhaustive testing of the same test suite.
Project description
A library for property-based testing in two different ways:
“QuickCheck” - randomly generated inputs
“SmallCheck” - exhaustively enumerated inputs
These testing approaches are named for the pioneering Haskell libraries. The two approaches truly shine when used together - once a property is found to be refutable by some probably-huge-and-crazy random input, it is often worth investing the CPU time to find the _smallest_ counterexample.
This library is a brand new work-in-progress (see commit log for dates) with known issues:
Does not have randomly generated strings just yet.
No existential quantification yet, but smallcheck does allow it!
Needs more thorough testing.
Needs to be able to test that a property always throws an exception.
Needs lots more combinators.
Needs one-liner interface rather than checking status of test cases.
Installation & Usage
(TODO: Describe in more detail. For now, read doublecheck/gen.py and doublecheck/prop.py)
$ pip install doublecheck $ python >>> from doublecheck import * >>> ForAll(lambda i: i > 0, PosInts()).quickcheck(100000).status ‘Certain’
Copyright & License
Copyright 2012- Kenneth Knowles
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for doublecheck-0.1pre2012-05-08T10-05-14.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61a071e1f1e609607a8394a220a6ad09d290e504266c61328883646ca27bbe53 |
|
MD5 | f82b287d670430836e823bbe3d2143f6 |
|
BLAKE2b-256 | af1b2c476929a1847655ff6c844585a9ba3d8acf5488cefdc162c4c690485bd7 |