blob: 026bd918f09ad07cffb164c04f56da35f420e523 [file] [log] [blame]
/*
* Created on Jun 10, 2013
*
* PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
*/
package org.eclipse.osee.ote.core;
import org.junit.Assert;
import org.junit.Test;
/**
* @author Michael P. Masterson
*/
public class XmlSupportTest {
/**
* Test method for {@link org.eclipse.osee.ote.core.XmlSupport#convertNonPrintableCharacers(java.lang.String)}.
*/
@Test
public void testConvertXmlCharacers() {
String testString = "abc\n\r\0\t 123\f&<>";
String expected = "abc\n\r[ASCII=0]\t 123[ASCII=12][ampersand][less-than][greater-than]";
String actual = XmlSupport.convertXmlCharacters(testString);
Assert.assertEquals(expected, actual);
}
@Test
public void testNonPrintableCharacter() {
String testString = "abc\n\r\0\t 123\f&<>";
String expected = "abc\n\r[ASCII=0]\t 123[ASCII=12]&<>";
String actual = XmlSupport.convertNonPrintableCharacers(testString);
Assert.assertEquals(expected, actual);
}
}