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