(t *testing.T)
| 535 | } |
| 536 | |
| 537 | func TestExtractPlainOutput_PlainText(t *testing.T) { |
| 538 | t.Parallel() |
| 539 | raw := "codemonkey\\john\n" |
| 540 | got := extractPlainOutput(raw) |
| 541 | if got != raw { |
| 542 | t.Errorf("expected raw passthrough, got %q", got) |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | func TestExtractPlainOutput_NestedNetstat(t *testing.T) { |
| 547 | t.Parallel() |
nothing calls this directly
no test coverage detected