*/
public void testFormatAttributesEndWithX() {
JDOMFactory factory = new DefaultJDOMFactory();
Attribute attr;
List attributes = new ArrayList();
attr = factory.attribute("pixelDepth", "24");
attributes.add(attr);
attr = factory.attribute("pixelsX", "100");
attributes.add(attr);
String message = "{pixelDepth}bits, {pixelsX}x{pixelsY}px and that is the end";