(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func TestExitStatusSignaled(t *testing.T) { |
| 46 | status := unix.WaitStatus(2) |
| 47 | ex := ExitStatus(status) |
| 48 | if ex != 130 { |
| 49 | t.Errorf("expected exit status to equal 130 and received %d", ex) |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | func TestWriteJSON(t *testing.T) { |
| 54 | person := struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…