(t *testing.T, check func() error)
| 155 | } |
| 156 | |
| 157 | func verifyCheck(t *testing.T, check func() error) { |
| 158 | errCheck := check() |
| 159 | if errCheck != nil { |
| 160 | t.Skip("Validation not passing. Skipping the apply.") |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | func execTransaction(t *testing.T, req *pb.RequestOp) { |
| 165 | b, _ := betesting.NewDefaultTmpBackend(t) |
no test coverage detected
searching dependent graphs…