TimingsPlotReporter
This commit is contained in:
11
lib/reporter.go
Normal file
11
lib/reporter.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package vegeta
|
||||
|
||||
import (
|
||||
"io"
|
||||
)
|
||||
|
||||
// Reporter represents any reporter of the results of the test
|
||||
type Reporter interface {
|
||||
Report(io.Writer) error
|
||||
add(res *result)
|
||||
}
|
||||
Reference in New Issue
Block a user