-
Notifications
You must be signed in to change notification settings - Fork 9
/
mock_test.go
90 lines (72 loc) · 1.64 KB
/
mock_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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package main
import (
"io"
)
type (
mockGetPassword func() (string, error)
)
type mockIO struct {
getPassword mockGetPassword
}
func (m mockIO) In() io.Reader {
//TODO implement me
panic("implement me")
}
func (m mockIO) Out() io.WriteCloser {
//TODO implement me
panic("implement me")
}
func (m mockIO) Err() io.WriteCloser {
//TODO implement me
panic("implement me")
}
func (m mockIO) SetIn(in io.Reader) {
//TODO implement me
panic("implement me")
}
func (m mockIO) SetOut(out io.WriteCloser) {
//TODO implement me
panic("implement me")
}
func (m mockIO) SetErr(err io.WriteCloser) {
//TODO implement me
panic("implement me")
}
func (m mockIO) Println(args ...interface{}) {
//TODO implement me
panic("implement me")
}
func (m mockIO) Printf(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}
func (m mockIO) Printfln(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}
func (m mockIO) ErrPrintln(args ...interface{}) {
//TODO implement me
panic("implement me")
}
func (m mockIO) ErrPrintfln(format string, args ...interface{}) {
//TODO implement me
panic("implement me")
}
func (m mockIO) GetCheckPassword(prompts [2]string, insecure bool) (string, error) {
//TODO implement me
panic("implement me")
}
func (m mockIO) GetConfirmation(prompt string) (bool, error) {
//TODO implement me
panic("implement me")
}
func (m mockIO) GetPassword(prompt string, insecure bool) (string, error) {
if m.getPassword != nil {
return m.getPassword()
}
return "", nil
}
func (m mockIO) GetString(prompt string) (string, error) {
//TODO implement me
panic("implement me")
}