Versions in this module Expand all Collapse all v0 v0.2.0 Apr 3, 2026 Changes in this version + type BranchCov struct + Block int + Index int + Line int + Taken int + type CovReport struct + Files []*FileCov + Sources []string + Timestamp time.Time + func (r *CovReport) BranchPct() float64 + func (r *CovReport) FuncPct() float64 + func (r *CovReport) LinePct() float64 + func (r *CovReport) Merge(other *CovReport) + func (r *CovReport) Stats() (lt, lc, bt, bc, ft, fc int) + type FileCov struct + BranchCovered int + BranchTotal int + Branches []BranchCov + FuncCovered int + FuncTotal int + Funcs []FuncCov + Lines []LineCov + LinesCovered int + LinesTotal int + Path string + func (f *FileCov) BranchPct() float64 + func (f *FileCov) Compute() + func (f *FileCov) FuncPct() float64 + func (f *FileCov) LinePct() float64 + type FuncCov struct + Calls int + Line int + Name string + type LineCov struct + Hits int + Number int