-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmoke_test.go
More file actions
56 lines (48 loc) · 2.11 KB
/
smoke_test.go
File metadata and controls
56 lines (48 loc) · 2.11 KB
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
package speech
import (
"github.com/AndroidGoLab/binder/tools/pkg/testutil"
"testing"
)
// Code generated by aospgen. DO NOT EDIT.
func TestSmoke_ModelDownloadListenerProxy(t *testing.T) {
mock := testutil.NewMockBinder()
proxy := NewModelDownloadListenerProxy(mock)
result := testutil.SmokeTestAllMethods(t, proxy)
t.Logf("ModelDownloadListenerProxy: %d/%d passed, %d panicked, %d failed",
result.Passed, result.Total, result.Panicked, result.Failed)
}
func TestSmoke_RecognitionListenerProxy(t *testing.T) {
mock := testutil.NewMockBinder()
proxy := NewRecognitionListenerProxy(mock)
result := testutil.SmokeTestAllMethods(t, proxy)
t.Logf("RecognitionListenerProxy: %d/%d passed, %d panicked, %d failed",
result.Passed, result.Total, result.Panicked, result.Failed)
}
func TestSmoke_RecognitionServiceProxy(t *testing.T) {
mock := testutil.NewMockBinder()
proxy := NewRecognitionServiceProxy(mock)
result := testutil.SmokeTestAllMethods(t, proxy)
t.Logf("RecognitionServiceProxy: %d/%d passed, %d panicked, %d failed",
result.Passed, result.Total, result.Panicked, result.Failed)
}
func TestSmoke_RecognitionServiceManagerProxy(t *testing.T) {
mock := testutil.NewMockBinder()
proxy := NewRecognitionServiceManagerProxy(mock)
result := testutil.SmokeTestAllMethods(t, proxy)
t.Logf("RecognitionServiceManagerProxy: %d/%d passed, %d panicked, %d failed",
result.Passed, result.Total, result.Panicked, result.Failed)
}
func TestSmoke_RecognitionServiceManagerCallbackProxy(t *testing.T) {
mock := testutil.NewMockBinder()
proxy := NewRecognitionServiceManagerCallbackProxy(mock)
result := testutil.SmokeTestAllMethods(t, proxy)
t.Logf("RecognitionServiceManagerCallbackProxy: %d/%d passed, %d panicked, %d failed",
result.Passed, result.Total, result.Panicked, result.Failed)
}
func TestSmoke_RecognitionSupportCallbackProxy(t *testing.T) {
mock := testutil.NewMockBinder()
proxy := NewRecognitionSupportCallbackProxy(mock)
result := testutil.SmokeTestAllMethods(t, proxy)
t.Logf("RecognitionSupportCallbackProxy: %d/%d passed, %d panicked, %d failed",
result.Passed, result.Total, result.Panicked, result.Failed)
}