(t *testing.T)
| 140 | } |
| 141 | |
| 142 | func TestOperatorLogicOrTry(t *testing.T) { |
| 143 | var tests []test.MurexTest |
| 144 | for _, src := range testsOr { |
| 145 | newTest := src |
| 146 | src.Block = "try {" + src.Block + "}" |
| 147 | tests = append(tests, newTest) |
| 148 | } |
| 149 | test.RunMurexTests(tests, t) |
| 150 | } |
| 151 | |
| 152 | func TestOperatorLogicAndTryPipe(t *testing.T) { |
| 153 | var tests []test.MurexTest |
nothing calls this directly
no test coverage detected