TimingsPlotReporter

This commit is contained in:
Tomás Senart
2013-08-17 19:52:29 +02:00
parent 2814cf312e
commit c6ad47722b
4 changed files with 105 additions and 8 deletions

11
lib/reporter.go Normal file
View 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)
}