(tt *testing.T)
| 31669 | } |
| 31670 | |
| 31671 | func TestPackageFile_GetDownloadURL(tt *testing.T) { |
| 31672 | tt.Parallel() |
| 31673 | var zeroValue string |
| 31674 | p := &PackageFile{DownloadURL: &zeroValue} |
| 31675 | p.GetDownloadURL() |
| 31676 | p = &PackageFile{} |
| 31677 | p.GetDownloadURL() |
| 31678 | p = nil |
| 31679 | p.GetDownloadURL() |
| 31680 | } |
| 31681 | |
| 31682 | func TestPackageFile_GetID(tt *testing.T) { |
| 31683 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…