Conditions | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | package e2e |
||
11 | func TestLicenseKeyInstancesService_Get(t *testing.T) { |
||
12 | // Setup |
||
13 | t.Parallel() |
||
14 | |||
15 | _, response, err := client.LicenseKeyInstances.Get(context.Background(), "9959") |
||
16 | |||
17 | // Assert |
||
18 | assert.NotNil(t, err) |
||
19 | |||
20 | assert.Equal(t, http.StatusNotFound, response.HTTPResponse.StatusCode) |
||
21 | } |
||
35 |