(t *testing.T)
| 28 | ) |
| 29 | |
| 30 | func TestCreateConnection(t *testing.T) { |
| 31 | client := CreateClient(t) |
| 32 | |
| 33 | CreateTestConnection(client) |
| 34 | |
| 35 | conns := client.ListConnections(PLUGIN_NAME) |
| 36 | require.Equal(t, 1, len(conns)) |
| 37 | require.Equal(t, EMPTY_TOKEN, conns[0].Token) |
| 38 | } |
| 39 | |
| 40 | func TestDeleteConnection(t *testing.T) { |
| 41 | client := CreateClient(t) |
nothing calls this directly
no test coverage detected