(tt *testing.T)
| 1844 | } |
| 1845 | |
| 1846 | func TestApp_GetID(tt *testing.T) { |
| 1847 | tt.Parallel() |
| 1848 | var zeroValue int64 |
| 1849 | a := &App{ID: &zeroValue} |
| 1850 | a.GetID() |
| 1851 | a = &App{} |
| 1852 | a.GetID() |
| 1853 | a = nil |
| 1854 | a.GetID() |
| 1855 | } |
| 1856 | |
| 1857 | func TestApp_GetInstallationsCount(tt *testing.T) { |
| 1858 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…