Vixen
02b45cc4
csharp
public record class FuzzOutcome

What 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 Target

    Which decoder was run.

  • public long Cases

    How many inputs were pushed through it.

  • public int CorpusSize

    How many were worth keeping.

  • public int Signatures

    How many distinct behaviours were seen.

  • public TimeSpan Elapsed

    How long it took.

  • public IReadOnlyList<FuzzFinding> Findings

    What broke, if anything.

  • public bool Clean

    Whether 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