File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
unicodetools/src/test/java/org/unicode/text/UCD Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -260,6 +260,7 @@ void testRegularExpressionQueries() {
260260 /** Helper class for testing multiple properties of the same UnicodeSet. */
261261 private static class UnicodeSetTestFluent {
262262 UnicodeSetTestFluent (String expression ) {
263+ System .err .println ("Constructing tested UnicodeSet from expression " + expression );
263264 this .expression = expression ;
264265 ParsePosition parsePosition = new ParsePosition (0 );
265266 try {
@@ -285,6 +286,7 @@ public void isIllFormed(String messageSubstring) {
285286
286287 public <T extends CharSequence > UnicodeSetTestFluent isEqualToUnicodeSet (
287288 String expectedExpression ) {
289+ System .err .println ("Constructing comparison UnicodeSet from expression " + expression );
288290 final var expected = new UnicodeSet (expectedExpression );
289291 assertTrue (
290292 set .containsAll (expected ),
You can’t perform that action at this time.
0 commit comments