public void testParameters() throws Exception {
TextualTransformManager ttm = new TextualTransformManager( "testParameters" );
String classes = "TextElementTransform";
PropertySet ps = new ValueSet( Property.lang_InsertPrefix, "[",
Property.lang_InsertSuffix, "]",
Property.lang_TextQuote, "~");
ttm.loadClasses( classes );
ttm.setParameters( ps );
TextualTransform tt = new org.jostraca.transform.TextElementTransform();
tt.setParameters( ps );
String from = "a";
String to = tt.transform( from );
assertTrue( to.equals( ttm.transform( from ) ) );
}