-
Notifications
You must be signed in to change notification settings - Fork 0
/
marshaler.go
77 lines (68 loc) · 1.92 KB
/
marshaler.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
// This file was generated by counterfeiter
package fakes
import (
"lib/marshal"
"sync"
)
type Marshaler struct {
MarshalStub func(input interface{}) ([]byte, error)
marshalMutex sync.RWMutex
marshalArgsForCall []struct {
input interface{}
}
marshalReturns struct {
result1 []byte
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Marshaler) Marshal(input interface{}) ([]byte, error) {
fake.marshalMutex.Lock()
fake.marshalArgsForCall = append(fake.marshalArgsForCall, struct {
input interface{}
}{input})
fake.recordInvocation("Marshal", []interface{}{input})
fake.marshalMutex.Unlock()
if fake.MarshalStub != nil {
return fake.MarshalStub(input)
} else {
return fake.marshalReturns.result1, fake.marshalReturns.result2
}
}
func (fake *Marshaler) MarshalCallCount() int {
fake.marshalMutex.RLock()
defer fake.marshalMutex.RUnlock()
return len(fake.marshalArgsForCall)
}
func (fake *Marshaler) MarshalArgsForCall(i int) interface{} {
fake.marshalMutex.RLock()
defer fake.marshalMutex.RUnlock()
return fake.marshalArgsForCall[i].input
}
func (fake *Marshaler) MarshalReturns(result1 []byte, result2 error) {
fake.MarshalStub = nil
fake.marshalReturns = struct {
result1 []byte
result2 error
}{result1, result2}
}
func (fake *Marshaler) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.marshalMutex.RLock()
defer fake.marshalMutex.RUnlock()
return fake.invocations
}
func (fake *Marshaler) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
var _ marshal.Marshaler = new(Marshaler)