(t *testing.T)
| 312 | } |
| 313 | |
| 314 | func TestReportCommand_MarkdownNoGraph(t *testing.T) { |
| 315 | tmpDir := createReportTestFiles(t) |
| 316 | resetReportFlags() |
| 317 | |
| 318 | output := captureReportOutput(t, tmpDir) |
| 319 | |
| 320 | if strings.Contains(output, "## Dependency Graph") { |
| 321 | t.Error("Expected no graph section without --include-graph") |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | // --- Group-by variations --- |
| 326 |
nothing calls this directly
no test coverage detected