(t *testing.T)
| 160 | } |
| 161 | |
| 162 | func TestOperatorLogicOrTryPipe(t *testing.T) { |
| 163 | var tests []test.MurexTest |
| 164 | for _, src := range testsOr { |
| 165 | newTest := src |
| 166 | src.Block = "trypipe {" + src.Block + "}" |
| 167 | tests = append(tests, newTest) |
| 168 | } |
| 169 | test.RunMurexTests(tests, t) |
| 170 | } |
| 171 | |
| 172 | func TestOperatorsTry(t *testing.T) { |
| 173 | tests := []test.MurexTest{ |
nothing calls this directly
no test coverage detected