github.com/fnando/bolt@v0.0.4-0.20231107225351-5241e4d187b8/internal/reporters/reporter.go (about)

     1  package reporters
     2  
     3  import c "github.com/fnando/bolt/common"
     4  
     5  type Reporter interface {
     6  	Name() string
     7  	OnData(line string)
     8  	OnProgress(test c.Test)
     9  	OnFinished(options ReporterFinishedOptions)
    10  }
    11  
    12  type ReporterFinishedOptions struct {
    13  	Aggregation  *c.Aggregation
    14  	HideCoverage bool
    15  	HideSlowest  bool
    16  	Debug        bool
    17  }