(t *testing.T)
| 39 | ) |
| 40 | |
| 41 | func TestDefaultConnection(t *testing.T) { |
| 42 | s := RunDefaultServer() |
| 43 | defer s.Shutdown() |
| 44 | |
| 45 | nc := NewDefaultConnection(t) |
| 46 | nc.Close() |
| 47 | } |
| 48 | |
| 49 | func TestConnectionStatus(t *testing.T) { |
| 50 | s := RunDefaultServer() |
nothing calls this directly
no test coverage detected