Versions in this module Expand all Collapse all v2 v2.0.0 Jul 12, 2016 Changes in this version + type Aggregator struct + func NewAggregator(nodeCount int, result chan bool, config config.DefaultReporterConfigType, ...) *Aggregator + func (aggregator *Aggregator) AfterSuiteDidRun(setupSummary *types.SetupSummary) + func (aggregator *Aggregator) BeforeSuiteDidRun(setupSummary *types.SetupSummary) + func (aggregator *Aggregator) SpecDidComplete(specSummary *types.SpecSummary) + func (aggregator *Aggregator) SpecSuiteDidEnd(summary *types.SuiteSummary) + func (aggregator *Aggregator) SpecSuiteWillBegin(config config.GinkgoConfigType, summary *types.SuiteSummary) + func (aggregator *Aggregator) SpecWillRun(specSummary *types.SpecSummary) + type ForwardingReporter struct + func NewForwardingReporter(serverHost string, poster Poster, outputInterceptor OutputInterceptor) *ForwardingReporter + func (reporter *ForwardingReporter) AfterSuiteDidRun(setupSummary *types.SetupSummary) + func (reporter *ForwardingReporter) BeforeSuiteDidRun(setupSummary *types.SetupSummary) + func (reporter *ForwardingReporter) SpecDidComplete(specSummary *types.SpecSummary) + func (reporter *ForwardingReporter) SpecSuiteDidEnd(summary *types.SuiteSummary) + func (reporter *ForwardingReporter) SpecSuiteWillBegin(conf config.GinkgoConfigType, summary *types.SuiteSummary) + func (reporter *ForwardingReporter) SpecWillRun(specSummary *types.SpecSummary) + type OutputInterceptor interface + StartInterceptingOutput func() error + StopInterceptingAndReturnOutput func() (string, error) + func NewOutputInterceptor() OutputInterceptor + type Poster interface + Post func(url string, bodyType string, body io.Reader) (resp *http.Response, err error) + type Server struct + func NewServer(parallelTotal int) (*Server, error) + func (server *Server) Address() string + func (server *Server) Close() + func (server *Server) RegisterAlive(node int, alive func() bool) + func (server *Server) RegisterReporters(reporters ...reporters.Reporter) + func (server *Server) Start()