StyleConstants.setAlignment(s, StyleConstants.ALIGN_JUSTIFIED);
harness.check(StyleConstants.getAlignment(s),
StyleConstants.ALIGN_JUSTIFIED);
// check resolving parent setting
s.removeAttribute(StyleConstants.Alignment);
SimpleAttributeSet parent = new SimpleAttributeSet();
s.setResolveParent(parent);
StyleConstants.setAlignment(parent, StyleConstants.ALIGN_JUSTIFIED);
harness.check(StyleConstants.getAlignment(s),
StyleConstants.ALIGN_JUSTIFIED);