47
48
// Fail marks the current attempt as failed without stopping it.
50
>
t.failed = true
51
>
}
52
53
// Error records an error message for reporting on timeout.
55
>
t.Fail()
56
>
t.errors = append(t.errors, strings.TrimSuffix(fmt.Sprintln(args...), "\n"))
57
>
}
58
59
// Errorf records an error message for reporting on timeout.