(tt *testing.T)
| 1251 | } |
| 1252 | |
| 1253 | func TestAlert_GetState(tt *testing.T) { |
| 1254 | tt.Parallel() |
| 1255 | var zeroValue string |
| 1256 | a := &Alert{State: &zeroValue} |
| 1257 | a.GetState() |
| 1258 | a = &Alert{} |
| 1259 | a.GetState() |
| 1260 | a = nil |
| 1261 | a.GetState() |
| 1262 | } |
| 1263 | |
| 1264 | func TestAlert_GetTool(tt *testing.T) { |
| 1265 | tt.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…