(tt *testing.T)
| 3638 | } |
| 3639 | |
| 3640 | func TestBlob_GetContent(tt *testing.T) { |
| 3641 | tt.Parallel() |
| 3642 | var zeroValue string |
| 3643 | b := &Blob{Content: &zeroValue} |
| 3644 | b.GetContent() |
| 3645 | b = &Blob{} |
| 3646 | b.GetContent() |
| 3647 | b = nil |
| 3648 | b.GetContent() |
| 3649 | } |
| 3650 | |
| 3651 | func TestBlob_GetEncoding(tt *testing.T) { |
| 3652 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…