*/
public void testPrint() throws Exception {
boolean[] bools = new boolean[]{false, true};
int[] ints = new int[]{0,1};
for (int i = 0; i < bools.length; i++) {
Test test = new TestImpl();
test.setBool(bools[i]);
StringWriter sw = new StringWriter();
Marshaller m = getJAXBContext().createMarshaller();
m.setProperty(JMMarshallerImpl.JAXME_XML_DECLARATION, Boolean.FALSE);
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.FALSE);
m.marshal(test, sw);