(c Conclusion)
| 316 | } |
| 317 | |
| 318 | func IsFailureState(c Conclusion) bool { |
| 319 | switch c { |
| 320 | case ActionRequired, Failure, StartupFailure, TimedOut: |
| 321 | return true |
| 322 | default: |
| 323 | return false |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | func IsSkipped(c Conclusion) bool { |
| 328 | return c == Skipped |
no outgoing calls
no test coverage detected