true);
}
@Test
public void testPropertiesObfuscation() throws SQLException {
CollectionSettingsRegistry registry = CollectionSettingsRegistry.getInstance();
// make sure the defaults are overridden
registry.set(JdbcDriverConnectOperationCollectionAspect.OBFUSCATED_PROPERTIES_SETTING, "x,y,z");
Operation op = runConnectionTest();
assertObscuredProperties(op,
StringUtil.explode(JdbcDriverConnectOperationCollectionAspect.DEFAULT_OBFUSCATED_PROPERTIES_LIST, ","),
false);
}