assertTrue(tf.exclude(new TableIdentifier("max") ).booleanValue() );
assertNull(tf.exclude(new TableIdentifier("maxnotexact") ) );
tf.setMatchName(".*max");
assertTrue(tf.exclude(new TableIdentifier("max") ).booleanValue() );
assertNull(tf.exclude(new TableIdentifier("maxnotending") ) );
assertTrue(tf.exclude(new TableIdentifier("endingWithmax") ).booleanValue() );
tf.setMatchName("max.*");
assertTrue(tf.exclude(new TableIdentifier("max") ).booleanValue() );
tf.setMatchName(".*max.*");
assertTrue(tf.exclude(new TableIdentifier("max") ).booleanValue() );
assertNull(tf.exclude(new TableIdentifier("notxam") ) );