mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00

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.
27 lines
647 B
Go
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)
|
|
}
|
|
}
|
|
}
|