Versions in this module Expand all Collapse all v1 v1.1.0 Sep 7, 2026 v1.0.0 Aug 30, 2026 Changes in this version + type BenchmarkReport struct + Benchmarks []BenchmarkResult + func ParseBenchmarks(r io.Reader) (BenchmarkReport, error) + type BenchmarkResult struct + Median float64 + Name string + Samples []BenchmarkSample + type BenchmarkSample struct + NsOp float64 + type CoverageBlock struct + Count uint64 + EndCol int + EndLine int + File string + StartCol int + StartLine int + Statements uint64 + func ParseCoverageBlocks(r io.Reader) ([]CoverageBlock, error) + type CoverageFile struct + File string + Gaps []CoverageGap + Percent float64 + type CoverageGap struct + EndCol int + EndLine int + File string + StartCol int + StartLine int + Statements uint64 + type CoverageReport struct + Files []CoverageFile + OverallPercent float64 + func ParseCoverage(r io.Reader) (CoverageReport, error) + type RaceAccess struct + Address string + Function string + GoroutineID int + Kind string + Location finding.Location + State string + type RaceConflict struct + Current RaceAccess + GoroutineCreation []RaceAccess + Previous RaceAccess + type RaceReportOutput struct + Conflicts []RaceConflict + RawBlocksFound int + func Parse(input string) RaceReportOutput + type Stats struct + Malformed int + Valid int + func DecodeTestJSON(r io.Reader, callback func(TestEvent) error) (Stats, error) + type TestEvent struct + Action string + Elapsed float64 + Output string + Package string + Test string + Time time.Time