This commit is contained in:
Mikaël Cluseau
2018-06-17 17:46:58 +11:00
parent 81e581f157
commit ec3736cedc
115 changed files with 44287 additions and 0 deletions

19
vendor/gopkg.in/check.v1/export_test.go generated vendored Normal file
View File

@ -0,0 +1,19 @@
package check
import "io"
func PrintLine(filename string, line int) (string, error) {
return printLine(filename, line)
}
func Indent(s, with string) string {
return indent(s, with)
}
func NewOutputWriter(writer io.Writer, stream, verbose bool) *outputWriter {
return newOutputWriter(writer, stream, verbose)
}
func (c *C) FakeSkip(reason string) {
c.reason = reason
}