go-junit-report/pkg/gtr/gtr_test.go
Joël Stemmer c78e04707f gtr,parser/gotest: move Event and building a report to parser/gotest
The Parse method now directly returns a report, rather than a list of
events that then need to be converted into a report. As part of this
change, the Event struct has also been moved to the gotest package. It's
now the responsibility of the parser to construct a gtr.Report.
2022-03-22 22:05:23 +00:00

27 lines
647 B
Go

package gtr
import "testing"
func TestTrimPrefixSpaces(t *testing.T) {
tests := []struct {
input string
indent int
want string
}{
{"", 0, ""},
{"\ttest", 0, "test"}, // prefixed tabs are always trimmed
{" test", 0, "test"},
{" test", 0, " test"},
{" test", 2, "test"},
{" test", 1, " test"}, // prefix is not a multiple of 4
{" \t test", 3, " test"},
}
for _, test := range tests {
got := TrimPrefixSpaces(test.input, test.indent)
if got != test.want {
t.Errorf("TrimPrefixSpaces(%q, %d) incorrect, got %q, want %q", test.input, test.indent, got, test.want)
}
}
}