Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkFuzzCall (0.35 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			}
    		}
    	}
    	return nil, nil
    }
    
    // checkFuzz checks the contents of a fuzz function.
    func checkFuzz(pass *analysis.Pass, fn *ast.FuncDecl) {
    	params := checkFuzzCall(pass, fn)
    	if params != nil {
    		checkAddCalls(pass, fn, params)
    	}
    }
    
    // checkFuzzCall checks the arguments of f.Fuzz() calls:
    //
    //  1. f.Fuzz() should call a function and it should be of type (*testing.F).Fuzz().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top