(t *testing.T)
| 51 | } |
| 52 | |
| 53 | func TestChannel(t *testing.T) { |
| 54 | c := subscriptions.NewDefaultClient() |
| 55 | |
| 56 | if c.Channel() == nil { |
| 57 | t.Fatalf("Expected channel to be initialized, got") |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | func TestSubscriptions(t *testing.T) { |
| 62 | c := subscriptions.NewDefaultClient() |
nothing calls this directly
no test coverage detected
searching dependent graphs…