forked from andersfylling/disgord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstruct_voice_test.go
46 lines (40 loc) · 999 Bytes
/
struct_voice_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
package disgord
import (
"io/ioutil"
"testing"
)
func TestStateMarshalling(t *testing.T) {
data, err := ioutil.ReadFile("testdata/voice/state1.json")
check(err, t)
state := VoiceState{}
err = validateJSONMarshalling(data, &state)
check(err, t)
}
func TestVoice_InterfaceImplementations(t *testing.T) {
t.Run("VoiceState", func(t *testing.T) {
var u interface{} = &VoiceState{}
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("VoiceRegion", func(t *testing.T) {
var u interface{} = &VoiceRegion{}
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")
}
})
})
}