-
Notifications
You must be signed in to change notification settings - Fork 1
/
context_test.go
70 lines (48 loc) · 998 Bytes
/
context_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
68
69
70
package golexa
import(
"testing"
_ "github.com/stretchr/testify/assert"
)
func TestGenContext(t *testing.T) {
}
func TestParseRequest(t *testing.T) {
}
func TestMakeNewResponse(t *testing.T) {
}
func TestPackData(t *testing.T) {
}
func TestJSON(t *testing.T) {
}
/******************************/
/* OutputSpeech object setter */
/******************************/
func TestAsk(t *testing.T) {
}
func TestText(t *testing.T) {
}
func TestWithText(t *testing.T) {
}
func TestWithSSML(t *testing.T) {
}
func TestRepromptWithText(t *testing.T) {
}
func TestRepromptWithSSML(t *testing.T) {
}
func TestSetOutputSpeech(t *testing.T) {
}
func TestCheckBehavior(t *testing.T) {
}
/**********************/
/* Card object setter */
/**********************/
func TestSimpleCard(t *testing.T) {
}
func TestStandardCard(t *testing.T) {
}
func TestLinkAccountCard(t *testing.T) {
}
/*********************/
/* Slot value getter */
/*********************/
func TestSlotLoader(t *testing.T) {
}