forked from pdf/golifx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Light.go
67 lines (54 loc) · 1.21 KB
/
Light.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
package mocks
import "github.com/pdf/golifx/common"
import "github.com/stretchr/testify/mock"
import "time"
type Light struct {
Device
mock.Mock
}
func (_m *Light) SetColor(color common.Color, duration time.Duration) error {
ret := _m.Called(color, duration)
var r0 error
if rf, ok := ret.Get(0).(func(common.Color, time.Duration) error); ok {
r0 = rf(color, duration)
} else {
r0 = ret.Error(0)
}
return r0
}
func (_m *Light) GetColor() (common.Color, error) {
ret := _m.Called()
var r0 common.Color
if rf, ok := ret.Get(0).(func() common.Color); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(common.Color)
}
var r1 error
if rf, ok := ret.Get(1).(func() error); ok {
r1 = rf()
} else {
r1 = ret.Error(1)
}
return r0, r1
}
func (_m *Light) CachedColor() common.Color {
ret := _m.Called()
var r0 common.Color
if rf, ok := ret.Get(0).(func() common.Color); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(common.Color)
}
return r0
}
func (_m *Light) SetPowerDuration(state bool, duration time.Duration) error {
ret := _m.Called(state, duration)
var r0 error
if rf, ok := ret.Get(0).(func(bool, time.Duration) error); ok {
r0 = rf(state, duration)
} else {
r0 = ret.Error(0)
}
return r0
}