(t *testing.T, woc *wfOperationCtx)
| 153 | } |
| 154 | |
| 155 | func testNodePodExists(t *testing.T, woc *wfOperationCtx) { |
| 156 | for _, node := range woc.wf.Status.Nodes { |
| 157 | if node.ID == "" { |
| 158 | continue |
| 159 | } |
| 160 | |
| 161 | doesPodExist := woc.nodePodExist(node) |
| 162 | assert.True(t, doesPodExist) |
| 163 | } |
| 164 | } |
no test coverage detected