(t *testing.T)
| 261 | } |
| 262 | |
| 263 | func TestExecutorNilConfig(t *testing.T) { |
| 264 | t.Parallel() |
| 265 | |
| 266 | exec := NewExecutor(nil, "/tmp", nil) |
| 267 | require.NotNil(t, exec) |
| 268 | assert.False(t, exec.Has(EventPreToolUse)) |
| 269 | } |
| 270 | |
| 271 | func TestCompiledMatcherMatchTool(t *testing.T) { |
| 272 | t.Parallel() |
nothing calls this directly
no test coverage detected