(t *testing.T)
| 216 | } |
| 217 | |
| 218 | func TestPrintDyffReportEmpty(t *testing.T) { |
| 219 | report := &Report{ |
| 220 | Entries: []ReportEntry{}, |
| 221 | } |
| 222 | |
| 223 | var buf bytes.Buffer |
| 224 | printDyffReport(report, &buf) |
| 225 | |
| 226 | output := buf.String() |
| 227 | require.Equal(t, "\n", output) |
| 228 | } |
nothing calls this directly
no test coverage detected