You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
642 B
16 lines
642 B
8 years ago
|
package convey
|
||
|
|
||
|
import (
|
||
|
"github.com/smartystreets/goconvey/convey/reporting"
|
||
|
)
|
||
|
|
||
|
type nilReporter struct{}
|
||
|
|
||
|
func (self *nilReporter) BeginStory(story *reporting.StoryReport) {}
|
||
|
func (self *nilReporter) Enter(scope *reporting.ScopeReport) {}
|
||
|
func (self *nilReporter) Report(report *reporting.AssertionResult) {}
|
||
|
func (self *nilReporter) Exit() {}
|
||
|
func (self *nilReporter) EndStory() {}
|
||
|
func (self *nilReporter) Write(p []byte) (int, error) { return len(p), nil }
|
||
|
func newNilReporter() *nilReporter { return &nilReporter{} }
|