--- Bash commands diff tests ---
(t *testing.T)
| 1259 | // --- Bash commands diff tests --- |
| 1260 | |
| 1261 | func TestComputeBashCommandsDiff_NoBash(t *testing.T) { |
| 1262 | // computeBashCommandsDiff receives pre-filtered maps; passing no bash tools → nil |
| 1263 | run1Tools := map[string]ToolCallInfo{} |
| 1264 | run2Tools := map[string]ToolCallInfo{} |
| 1265 | result := computeBashCommandsDiff(run1Tools, run2Tools) |
| 1266 | assert.Nil(t, result, "Should return nil when no bash tools present") |
| 1267 | } |
| 1268 | |
| 1269 | func TestComputeBashCommandsDiff_GenericBash(t *testing.T) { |
| 1270 | // Only bash tools are passed to computeBashCommandsDiff |
nothing calls this directly
no test coverage detected