~juju-qa/ubuntu/xenial/juju/xenial-2.0-beta3

« back to all changes in this revision

Viewing changes to src/gopkg.in/check.v1/export_test.go

  • Committer: Martin Packman
  • Date: 2016-03-30 19:31:08 UTC
  • mfrom: (1.1.41)
  • Revision ID: martin.packman@canonical.com-20160330193108-h9iz3ak334uk0z5r
Merge new upstream source 2.0~beta3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package check
2
2
 
 
3
import "io"
 
4
 
3
5
func PrintLine(filename string, line int) (string, error) {
4
6
        return printLine(filename, line)
5
7
}
7
9
func Indent(s, with string) string {
8
10
        return indent(s, with)
9
11
}
 
12
 
 
13
func NewOutputWriter(writer io.Writer, stream, verbose bool) *outputWriter {
 
14
        return newOutputWriter(writer, stream, verbose)
 
15
}
 
16
 
 
17
func (c *C) FakeSkip(reason string) {
 
18
        c.reason = reason
 
19
}