|
29 | 29 | import jakarta.el.ValueExpression; |
30 | 30 |
|
31 | 31 | import org.junit.Assert; |
32 | | -import org.junit.Ignore; |
33 | 32 | import org.junit.Test; |
34 | 33 |
|
35 | 34 | import org.apache.tomcat.util.collections.SynchronizedStack; |
@@ -99,9 +98,12 @@ public void testParserInstanceReuse() throws ParseException { |
99 | 98 | /* |
100 | 99 | * Ignored by default since this is an absolute test primarily for |
101 | 100 | * https://bz.apache.org/bugzilla/show_bug.cgi?id=69338 |
| 101 | + * |
| 102 | + * Comment out @Test rather than use @Ignore since @Ignore triggers a "skipped test" message in the test output |
| 103 | + * and those messages should be reserved for tests skipped due to environmental (no APR, wrong Java version, etc) |
| 104 | + * issues. |
102 | 105 | */ |
103 | | - @Ignore |
104 | | - @Test |
| 106 | + //@Test |
105 | 107 | public void testAstAnd() { |
106 | 108 |
|
107 | 109 | ELManager manager = new ELManager(); |
@@ -145,9 +147,12 @@ public void testAstAnd() { |
145 | 147 | /* |
146 | 148 | * Ignored by default since this is an absolute test primarily for |
147 | 149 | * https://bz.apache.org/bugzilla/show_bug.cgi?id=69338 |
| 150 | + * |
| 151 | + * Comment out @Test rather than use @Ignore since @Ignore triggers a "skipped test" message in the test output |
| 152 | + * and those messages should be reserved for tests skipped due to environmental (no APR, wrong Java version, etc) |
| 153 | + * issues. |
148 | 154 | */ |
149 | | - @Ignore |
150 | | - @Test |
| 155 | + //@Test |
151 | 156 | public void testAstNotEmpty() { |
152 | 157 |
|
153 | 158 | ELManager manager = new ELManager(); |
@@ -214,9 +219,12 @@ private Object runTest(Callable<Object> c, String description) throws Exception |
214 | 219 | * |
215 | 220 | * Ignored by default since this is an absolute test primarily for |
216 | 221 | * https://bz.apache.org/bugzilla/show_bug.cgi?id=69381 |
| 222 | + * |
| 223 | + * Comment out @Test rather than use @Ignore since @Ignore triggers a "skipped test" message in the test output |
| 224 | + * and those messages should be reserved for tests skipped due to environmental (no APR, wrong Java version, etc) |
| 225 | + * issues. |
217 | 226 | */ |
218 | | - @Ignore |
219 | | - @Test |
| 227 | + //@Test |
220 | 228 | public void testExpressions() throws Exception { |
221 | 229 |
|
222 | 230 | ELManager manager = new ELManager(); |
|
0 commit comments