()
| 137 | } |
| 138 | |
| 139 | func newFakeAppStorage() *fakeAppStorage { |
| 140 | return &fakeAppStorage{values: map[string][]byte{}} |
| 141 | } |
| 142 | |
| 143 | func (s *fakeAppStorage) Read(appID, key string) ([]byte, error) { |
| 144 | if s.err != nil { |
no outgoing calls
no test coverage detected