PHPackages                             steos/php-quickcheck - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Testing &amp; Quality](/categories/testing)
4. /
5. steos/php-quickcheck

Abandoned → [steos/quickcheck](/?search=steos%2Fquickcheck)Library[Testing &amp; Quality](/categories/testing)

steos/php-quickcheck
====================

a generative testing library

v2.0.2(3y ago)1915.0k15[5 issues](https://github.com/steos/php-quickcheck/issues)[1 PRs](https://github.com/steos/php-quickcheck/pulls)1BSD-3-ClausePHP

Since Jan 9Pushed 3y ago13 watchersCompare

[ Source](https://github.com/steos/php-quickcheck)[ Packagist](https://packagist.org/packages/steos/php-quickcheck)[ RSS](/packages/steos-php-quickcheck/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (5)Used By (1)

PHPQuickCheck
=============

[](#phpquickcheck)

PHPQuickCheck is a generative testing library for PHP based on clojure.test.check.

> Don't write tests. Generate them. - John Hughes

Huh?
----

[](#huh)

Generative testing, also called property-based testing, is about describing the behaviour of your system in terms of properties that should hold true for all possible input.

### Quickstart

[](#quickstart)

Install PHPQuickCheck:

```
composer require steos/quickcheck --dev

```

Create a property test `test/stringsAreNeverNumeric.php`:

```
