File: export_test.go

package info (click to toggle)
golang-check.v1 0.0%2Bgit20161208.0.20d25e2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 276 kB
  • ctags: 482
  • sloc: makefile: 14
file content (19 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
}