You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A port of [clojure/test/check](https://github.com/clojure/test.check) library to ClojureCLR.
4
+
5
+
From the original's README:
6
+
7
+
> _test.check_ is a Clojure property-based testing tool inspired by QuickCheck. The core idea of _test.check_ is that instead of enumerating expected input and output for unit tests, you write properties about your function that should hold true for all inputs. This lets you write concise, powerful tests
8
+
9
+
## Releases
10
+
11
+
Nuget reference:
12
+
13
+
PM> Install-Package clojure.test.check
14
+
15
+
Leiningen/Clojars reference:
16
+
17
+
[org.clojure.clr/test.check "0.6.1"]
18
+
19
+
20
+
## Notes on the ported code
21
+
22
+
None, so far.
23
+
24
+
## Contributing
25
+
26
+
We can not accept pull requests. Please see [CONTRIBUTING.md](CONTRIBUTING.md)
0 commit comments