From f36e372d1962c86cfe593729c06582471b500991 Mon Sep 17 00:00:00 2001 From: Philip-21 Date: Tue, 7 Mar 2023 18:46:36 +0100 Subject: [PATCH] adding some comments --- examples/fuzzing/calculator_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/fuzzing/calculator_test.go b/examples/fuzzing/calculator_test.go index 5f9a401..3954936 100644 --- a/examples/fuzzing/calculator_test.go +++ b/examples/fuzzing/calculator_test.go @@ -1,5 +1,11 @@ package main +/* Fuzz testing or fuzzing is an automated software testing method +that injects invalid, malformed, or unexpected inputs into a system +to reveal software defects and vulnerabilities. +A fuzzing tool injects these inputs into the system and then monitors for exceptions such as crashes or information leakage +*/ + import ( "bytes" "errors"