| 8 | ) |
| 9 | |
| 10 | type ChaincodeBuilder struct { |
| 11 | BuildStub func(string) error |
| 12 | buildMutex sync.RWMutex |
| 13 | buildArgsForCall []struct { |
| 14 | arg1 string |
| 15 | } |
| 16 | buildReturns struct { |
| 17 | result1 error |
| 18 | } |
| 19 | buildReturnsOnCall map[int]struct { |
| 20 | result1 error |
| 21 | } |
| 22 | invocations map[string][][]interface{} |
| 23 | invocationsMutex sync.RWMutex |
| 24 | } |
| 25 | |
| 26 | func (fake *ChaincodeBuilder) Build(arg1 string) error { |
| 27 | fake.buildMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected