aboutsummaryrefslogtreecommitdiff
path: root/libraries/librapidcheck/README
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/librapidcheck/README')
-rw-r--r--libraries/librapidcheck/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/libraries/librapidcheck/README b/libraries/librapidcheck/README
new file mode 100644
index 0000000000000..bc64383783fca
--- /dev/null
+++ b/libraries/librapidcheck/README
@@ -0,0 +1,8 @@
+RapidCheck is a C++ framework for property based testing inspired
+by QuickCheck. In this testing, you define properties your code
+should always satisfy given certain conditions. RapidCheck
+generates random test data to find cases where the property fails.
+If it finds a failure, it minimizes the input to the smallest
+failing case and displays it as a counterexample.
+
+By !red