(t *testing.T)
| 989 | } |
| 990 | |
| 991 | func TestProcessorProcessPaths_NoPaths(t *testing.T) { |
| 992 | p := NewProcessor(zap.NewNop()) |
| 993 | _, _, err := p.ProcessPaths(context.Background(), nil, ModeFull) |
| 994 | if err == nil { |
| 995 | t.Error("expected error when no paths provided") |
| 996 | } |
| 997 | } |
| 998 | |
| 999 | func TestProcessorProcessPaths_InvalidMode(t *testing.T) { |
| 1000 | p := NewProcessor(zap.NewNop()) |
nothing calls this directly
no test coverage detected