Blob is a utility class for unit tests.
| 32 | |
| 33 | // Blob is a utility class for unit tests. |
| 34 | type Blob struct { |
| 35 | Contents string // the contents of the blob |
| 36 | } |
| 37 | |
| 38 | var randSrc = rand.New(rand.NewSource(time.Now().UnixNano())) |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected