(c Conclusion)
| 311 | } |
| 312 | |
| 313 | func IsFailureState(c Conclusion) bool { |
| 314 | switch c { |
| 315 | case ActionRequired, Failure, StartupFailure, TimedOut: |
| 316 | return true |
| 317 | default: |
| 318 | return false |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | func IsSkipped(c Conclusion) bool { |
| 323 | return c == Skipped |
no outgoing calls
no test coverage detected