This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
auditlog_test.go
67 lines (60 loc) · 1.5 KB
/
auditlog_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
56
57
58
59
60
61
62
63
64
65
66
67
//go:build !integration
// +build !integration
package disgord
import (
"testing"
)
func TestAuditLog_InterfaceImplementations(t *testing.T) {
t.Run("AuditLog", func(t *testing.T) {
var u interface{} = &AuditLog{}
t.Run("DeepCopier", func(t *testing.T) {
if _, ok := u.(DeepCopier); !ok {
t.Error("does not implement DeepCopier")
}
})
t.Run("Copier", func(t *testing.T) {
if _, ok := u.(Copier); !ok {
t.Error("does not implement Copier")
}
})
})
t.Run("AuditLogEntry", func(t *testing.T) {
var u interface{} = &AuditLogEntry{}
t.Run("DeepCopier", func(t *testing.T) {
if _, ok := u.(DeepCopier); !ok {
t.Error("does not implement DeepCopier")
}
})
t.Run("Copier", func(t *testing.T) {
if _, ok := u.(Copier); !ok {
t.Error("does not implement Copier")
}
})
})
t.Run("AuditLogOption", func(t *testing.T) {
var u interface{} = &AuditLogOption{}
t.Run("DeepCopier", func(t *testing.T) {
if _, ok := u.(DeepCopier); !ok {
t.Error("does not implement DeepCopier")
}
})
t.Run("Copier", func(t *testing.T) {
if _, ok := u.(Copier); !ok {
t.Error("does not implement Copier")
}
})
})
t.Run("AuditLogChange", func(t *testing.T) {
var u interface{} = &AuditLogChanges{}
t.Run("DeepCopier", func(t *testing.T) {
if _, ok := u.(DeepCopier); !ok {
t.Error("does not implement DeepCopier")
}
})
t.Run("Copier", func(t *testing.T) {
if _, ok := u.(Copier); !ok {
t.Error("does not implement Copier")
}
})
})
}