@yot88
What is Property based testing ?
A property is the combination of an invariant with an input values generator.
For each generated value, the invariant is treated as a predicate and checked whether it yields true or false for that value.
As soon as there is one value which yields false, the property is said to be
falsified, and checking is aborted.
If a property cannot be invalidated after a specific amount of sample data, the
property is assumed to be satisfied.