Overview
Rendezvous is a fuzzer for Clarity smart contracts that finds vulnerabilities through stateful, randomized testing, all in Clarity.
What is Fuzz Testing?
What is Rendezvous?
Property-Based Testing
(define-public (test-reverse-list (seq (list 127 uint)))
(begin
(asserts!
(is-eq seq
(reverse-uint
(reverse-uint seq)
)
)
(err u999)
)
(ok true)
)
)Invariant Testing
Why Test in Clarity?
Getting Started
Installation
Additional Resources
Last updated
Was this helpful?