(t *testing.T)
| 142 | } |
| 143 | |
| 144 | func TestClientManagerAddTwice(t *testing.T) { |
| 145 | manager := apns2.NewClientManager() |
| 146 | manager.Add(apns2.NewClient(mockCert())) |
| 147 | manager.Add(apns2.NewClient(mockCert())) |
| 148 | assert.Equal(t, 1, manager.Len()) |
| 149 | } |
nothing calls this directly
no test coverage detected