(tt *testing.T)
| 1833 | } |
| 1834 | |
| 1835 | func TestApp_GetHTMLURL(tt *testing.T) { |
| 1836 | tt.Parallel() |
| 1837 | var zeroValue string |
| 1838 | a := &App{HTMLURL: &zeroValue} |
| 1839 | a.GetHTMLURL() |
| 1840 | a = &App{} |
| 1841 | a.GetHTMLURL() |
| 1842 | a = nil |
| 1843 | a.GetHTMLURL() |
| 1844 | } |
| 1845 | |
| 1846 | func TestApp_GetID(tt *testing.T) { |
| 1847 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…