Skip to content

Commit 6bff11e

Browse files
committed
meow?
1 parent 35fe8e8 commit 6bff11e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

unicodetools/src/test/java/org/unicode/text/UCD/TestVersionedSymbolTable.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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),

0 commit comments

Comments
 (0)