mirror of https://github.com/gogits/gogs.git
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.
15 lines
642 B
15 lines
642 B
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{} }
|
|
|