99import org .junit .jupiter .api .AfterEach ;
1010import org .junit .jupiter .api .BeforeEach ;
1111import org .junit .jupiter .api .Test ;
12- import org .unicode .props .IndexUnicodeProperties ;
1312import org .unicode .props .UnicodeProperty ;
1413
1514/**
@@ -24,7 +23,6 @@ public class TestVersionedSymbolTable {
2423 @ BeforeEach
2524 void setUp () {
2625 oldDefault = UnicodeSet .getDefaultXSymbolTable ();
27- System .err .println ("Setting default XSymbolTable to VersionedSymbolTable.forDevelopment…" );
2826 UnicodeSet .setDefaultXSymbolTable (VersionedSymbolTable .forDevelopment ());
2927 UnicodeProperty .ResetCacheProperties ();
3028 }
@@ -33,7 +31,6 @@ void setUp() {
3331 void tearDown () {
3432 UnicodeSet .setDefaultXSymbolTable (oldDefault );
3533 UnicodeProperty .ResetCacheProperties ();
36- System .err .println ("Restored default XSymbolTable." );
3734 }
3835
3936 @ Test
@@ -174,16 +171,10 @@ void testPropertyComparisons() {
174171
175172 @ Test
176173 void testIdentityAndNullQueries () {
177- System .err .println ("testIdentityAndNullQueries: scf…" );
178174 assertThatUnicodeSet ("\\ p{scf=@code point@}" ).contains ("a" ).doesNotContain ("A" );
179- System .err .println ("testIdentityAndNullQueries: kIRG_GSource" );
180175 assertThatUnicodeSet ("[:^kIRG_GSource=@none@:]" ).contains ("喵" ).doesNotContain ("𓃠" );
181- System .err .println ("testIdentityAndNullQueries: bpb…" );
182- System .err .println ("bpb(U+2E62) = " + IndexUnicodeProperties .make ().getProperty ("Bidi_Paired_Bracket" ).getValue (0x2E62 ));
183- System .err .println (((VersionedSymbolTable )UnicodeSet .getDefaultXSymbolTable ()).implicitVersion );
184176 assertThatUnicodeSet ("\\ p{Bidi_Paired_Bracket=@none@}" )
185177 .isEqualToUnicodeSet ("\\ p{Bidi_Paired_Bracket_Type=None}" );
186- System .err .println ("testIdentityAndNullQueries: done." );
187178 }
188179
189180 @ Test
@@ -262,7 +253,6 @@ void testRegularExpressionQueries() {
262253 /** Helper class for testing multiple properties of the same UnicodeSet. */
263254 private static class UnicodeSetTestFluent {
264255 UnicodeSetTestFluent (String expression ) {
265- System .err .println ("Constructing tested UnicodeSet from expression " + expression );
266256 this .expression = expression ;
267257 ParsePosition parsePosition = new ParsePosition (0 );
268258 try {
@@ -271,7 +261,6 @@ private static class UnicodeSetTestFluent {
271261 } catch (Exception e ) {
272262 exception = e ;
273263 }
274- System .err .println ("Tested UnicodeSet is " + set );
275264 }
276265
277266 public void isIllFormed (String messageSubstring ) {
@@ -289,9 +278,7 @@ public void isIllFormed(String messageSubstring) {
289278
290279 public <T extends CharSequence > UnicodeSetTestFluent isEqualToUnicodeSet (
291280 String expectedExpression ) {
292- System .err .println ("Constructing comparison UnicodeSet from expression " + expectedExpression );
293281 final var expected = new UnicodeSet (expectedExpression );
294- System .err .println ("Comparison UnicodeSet is " + expected .cloneAsThawed ().complement ().complement ());
295282 assertTrue (
296283 set .containsAll (expected ),
297284 "Expected "
0 commit comments