| 160 | } |
| 161 | |
| 162 | type mockedTokenGenerator struct { |
| 163 | totalZones int |
| 164 | zones map[string]int |
| 165 | |
| 166 | called int |
| 167 | RandomTokenGenerator |
| 168 | } |
| 169 | |
| 170 | func (m *mockedTokenGenerator) GenerateTokens(d *Desc, id, zone string, numTokens int, force bool) []uint32 { |
| 171 | m.called++ |
nothing calls this directly
no outgoing calls
no test coverage detected