assertEquals(true, csb[1].isItalic() );
}
+ public void testChangeCharacterProps() throws Exception {
+ // Change from A to B
+ StyleTextPropAtom stpa = new StyleTextPropAtom(data_a,0,data_a.length);
+ CharacterStyle[] csa = stpa.getCharacterStyles();
+
+ // Update paragraph length
+ stpa.setParagraphStyleCharactersCoveredLength(83);
+
+ // Update each of the Character Styles
+ // First is 30 long and bold
+ csa[0].setCharactersCoveredLength(30);
+ csa[0].setBold(true);
+ // Second is 28 long and italic
+ csa[1].setCharactersCoveredLength(28);
+ csa[1].setItalic(true);
+
+ // Ensure now matches data from B
+ // Disabled, as it currently doesn't, as we don't know about
+ // everything that needs updating, esp the S2 values
+// ByteArrayOutputStream baos = new ByteArrayOutputStream();
+// stpa.writeOut(baos);
+// byte[] b = baos.toByteArray();
+//
+// assertEquals(data_b.length, b.length);
+// for(int i=0; i<data_b.length; i++) {
+// assertEquals(data_b[i],b[i]);
+// }
+ }
+
public void testWrite() throws Exception {
StyleTextPropAtom stpa = new StyleTextPropAtom(data_a,0,data_a.length);
ByteArrayOutputStream baos = new ByteArrayOutputStream();