-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_platforms_test.go
55 lines (51 loc) · 1.21 KB
/
api_platforms_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* dotcom-monitor
*
* dotcom-monitor API
*
* API version: 1.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package dotcommonitor
import (
"context"
"net/http"
"reflect"
"testing"
)
func TestPlatformsApiService_GetPlataforms(t *testing.T) {
type fields struct {
client *APIClient
}
type args struct {
ctx context.Context
}
tests := []struct {
name string
fields fields
args args
want []Platform
want1 *http.Response
wantErr bool
}{
{"NoConnectivity", fields{client: generateConfigFake()}, args{ctx: generateContextCanceled()}, nil, nil, true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
a := &PlatformsApiService{
client: tt.fields.client,
}
got, got1, err := a.GetPlataforms(tt.args.ctx)
if (err != nil) != tt.wantErr {
t.Errorf("PlatformsApiService.GetPlataforms() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("PlatformsApiService.GetPlataforms() got = %v, want %v", got, tt.want)
}
if !reflect.DeepEqual(got1, tt.want1) {
t.Errorf("PlatformsApiService.GetPlataforms() got1 = %v, want %v", got1, tt.want1)
}
})
}
}