()
| 42 | } |
| 43 | |
| 44 | func (s *Suite) String() string { |
| 45 | var sb strings.Builder |
| 46 | s.debugString(&sb, "") |
| 47 | return sb.String() |
| 48 | } |
| 49 | |
| 50 | // writeLine writes a line of text to the given string builder with a prefix. |
| 51 | func writeLine(sb *strings.Builder, prefix string, format string, values ...any) { |
nothing calls this directly
no test coverage detected