(t *testing.T)
| 29 | } |
| 30 | |
| 31 | func TestCollectUnixSocketPathsNilConfig(t *testing.T) { |
| 32 | if got := collectUnixSocketPaths(nil); got != nil { |
| 33 | t.Fatalf("collectUnixSocketPaths(nil) = %v, want nil", got) |
| 34 | } |
| 35 | } |
nothing calls this directly
no test coverage detected