if (st.currentStatus!=null) {
if (!st.currentStatus.equals("accepted")) {
System.out.println("Warning: SchemaTest which isn't accepted: " + st);
} else if (st.isValid()){
// for now only test schemas that are valid
suite.addTest(new TestRoundTripXSD(f, true));
}
}
}
return suite;
}