Function fuzz [src]

Inline to avoid coverage instrumentation.

Prototype

pub inline fn fuzz( context: anytype, comptime testOne: fn (context: @TypeOf(context), input: []const u8) anyerror!void, options: FuzzInputOptions, ) anyerror!void

Parameters

testOne: fn (context: @TypeOf(context), input: []const u8) anyerror!voidoptions: FuzzInputOptions

Source

pub inline fn fuzz( context: anytype, comptime testOne: fn (context: @TypeOf(context), input: []const u8) anyerror!void, options: FuzzInputOptions, ) anyerror!void { return @import("root").fuzz(context, testOne, options); }