(evs []Event)
| 856 | } |
| 857 | |
| 858 | func hasWarningEvent(evs []Event) bool { |
| 859 | for _, e := range evs { |
| 860 | if _, ok := e.(*WarningEvent); ok { |
| 861 | return true |
| 862 | } |
| 863 | } |
| 864 | return false |
| 865 | } |
| 866 | |
| 867 | func TestGetTools_WarningHandling(t *testing.T) { |
| 868 | t.Parallel() |
no outgoing calls
no test coverage detected