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
Copy file name to clipboardExpand all lines: guides-and-tutorials/testing-smart-contracts/fuzz-testing.md
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,12 @@
1
1
# Fuzz Testing with Rendezvous
2
2
3
-
Smart contracts on Stacks are immutable. Bugs are forever. Test early. Test
4
-
often. Fuzzing finds edge cases that unit tests often miss.
3
+
Smart contracts on Stacks are immutable. Bugs are forever. Test early. Test often. Fuzzing finds edge cases that unit tests often miss.
5
4
6
5
## What is Fuzz Testing?
7
6
8
-
Fuzzing hits your code with random inputs. It helps uncover unexpected
9
-
behavior and subtle bugs. Unlike unit tests, it explores paths you didn't
10
-
think of.
7
+
Fuzzing hits your code with random inputs. It helps uncover unexpected behavior and subtle bugs. Unlike unit tests, it explores paths you didn't think of.
8
+
9
+
## What is Rendezvous?
11
10
12
11
Rendezvous (`rv`) is a Clarity fuzzer. It supports:
0 commit comments