diff --git a/dev/.documenter-siteinfo.json b/dev/.documenter-siteinfo.json index e27c456..e082b83 100644 --- a/dev/.documenter-siteinfo.json +++ b/dev/.documenter-siteinfo.json @@ -1 +1 @@ -{"documenter":{"julia_version":"1.10.2","generation_timestamp":"2024-03-14T17:35:36","documenter_version":"1.3.0"}} \ No newline at end of file +{"documenter":{"julia_version":"1.10.2","generation_timestamp":"2024-03-14T17:41:06","documenter_version":"1.3.0"}} \ No newline at end of file diff --git a/dev/Examples/basic.html b/dev/Examples/basic.html index 738b671..dcdfa64 100644 --- a/dev/Examples/basic.html +++ b/dev/Examples/basic.html @@ -35,4 +35,4 @@ Test Summary: | Pass Total Time successor | 1 1 0.0s Test Summary: | Pass Total Time -commutative | 1 1 0.0s
In this way, we can even reuse properties from other invocations of @check
with new, perhaps more specialized, inputs. For generalization, we can use Data.Just
to pass our add
function to the generalized properties.
From Julia 1.11 onwards, @check
can also report its own results as part of a parent @testset
. This is unfortunately unsupported on 1.10 and earlier.
Be aware that while all checks pass, we do not have a guarantee that our code is correct for all cases. Sampling elements to test is a statistical process and as such we can only gain confidence that our code is correct. You may view this in the light of Bayesian statistics, where we update our prior that the code is correct as we run our testsuite more often. This is also true were we not using property based testing or Supposition.jl at all - with traditional testing approaches, only the values we've actually run the code with can be said to be tested.
Settings
This document was generated with Documenter.jl version 1.3.0 on Thursday 14 March 2024. Using Julia version 1.10.2.