(tt *testing.T)
| 1866 | } |
| 1867 | |
| 1868 | func TestApp_GetName(tt *testing.T) { |
| 1869 | tt.Parallel() |
| 1870 | var zeroValue string |
| 1871 | a := &App{Name: &zeroValue} |
| 1872 | a.GetName() |
| 1873 | a = &App{} |
| 1874 | a.GetName() |
| 1875 | a = nil |
| 1876 | a.GetName() |
| 1877 | } |
| 1878 | |
| 1879 | func TestApp_GetNodeID(tt *testing.T) { |
| 1880 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…