(t *testing.T)
| 65 | } |
| 66 | |
| 67 | func TestClient_Errors(t *testing.T) { |
| 68 | c := NewClient() |
| 69 | errs := c.Errors() |
| 70 | |
| 71 | if errs == nil { |
| 72 | t.Error("should initialize Errors channel") |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | func TestClient_Close(t *testing.T) { |
| 77 | c := NewClient() |