github.com/leanovate/gopter@v0.2.9/reporter.go (about)

     1  package gopter
     2  
     3  // Reporter is a simple interface to report/format the results of a property check.
     4  type Reporter interface {
     5  	// ReportTestResult reports a single property result
     6  	ReportTestResult(propName string, result *TestResult)
     7  }