(blob *test.Blob, offset, size uint64)
| 49 | } |
| 50 | |
| 51 | func part(blob *test.Blob, offset, size uint64) *BytesPart { |
| 52 | return &BytesPart{BlobRef: blob.BlobRef(), Size: size, Offset: offset} |
| 53 | } |
| 54 | |
| 55 | // filePart returns a BytesPart that references a file JSON schema |
| 56 | // blob made of the provided content parts. |
no test coverage detected