csharp
public record class FuzzOutcomeWhat a run came to.
No guide page documents this yet — the page shows what the code says about itself.
Fields and properties (7)
public string TargetWhich decoder was run.
public long CasesHow many inputs were pushed through it.
public int CorpusSizeHow many were worth keeping.
public int SignaturesHow many distinct behaviours were seen.
public TimeSpan ElapsedHow long it took.
public IReadOnlyList<FuzzFinding> FindingsWhat broke, if anything.
public bool CleanWhether every promise held.
Methods (2)
public FuzzOutcome(string Target, long Cases, int CorpusSize, int Signatures, TimeSpan Elapsed, IReadOnlyList<FuzzFinding> Findings)What a run came to.
public override string ToString()Returns a string that represents the current object.
Used by (2)
- FuzzGateTestsVixen.Net.Fuzz.Tests
- FuzzSessionVixen.Net.Fuzz