(t *testing.T)
| 129 | } |
| 130 | |
| 131 | func TestOperatorLogicAndTry(t *testing.T) { |
| 132 | var tests []test.MurexTest |
| 133 | for _, src := range testsAnd { |
| 134 | newTest := src |
| 135 | src.Block = "try {" + src.Block + "}" |
| 136 | tests = append(tests, newTest) |
| 137 | } |
| 138 | |
| 139 | test.RunMurexTests(tests, t) |
| 140 | } |
| 141 | |
| 142 | func TestOperatorLogicOrTry(t *testing.T) { |
| 143 | var tests []test.MurexTest |
nothing calls this directly
no test coverage detected