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.
33 lines
674 B
33 lines
674 B
package reporting |
|
|
|
type gotestReporter struct{ test T } |
|
|
|
func (self *gotestReporter) BeginStory(story *StoryReport) { |
|
self.test = story.Test |
|
} |
|
|
|
func (self *gotestReporter) Enter(scope *ScopeReport) {} |
|
|
|
func (self *gotestReporter) Report(r *AssertionResult) { |
|
if !passed(r) { |
|
self.test.Fail() |
|
} |
|
} |
|
|
|
func (self *gotestReporter) Exit() {} |
|
|
|
func (self *gotestReporter) EndStory() { |
|
self.test = nil |
|
} |
|
|
|
func (self *gotestReporter) Write(content []byte) (written int, err error) { |
|
return len(content), nil // no-op |
|
} |
|
|
|
func NewGoTestReporter() *gotestReporter { |
|
return new(gotestReporter) |
|
} |
|
|
|
func passed(r *AssertionResult) bool { |
|
return r.Error == nil && r.Failure == "" |
|
}
|
|
|