public void testBeansProjectDescriptionWriterWithMixedAutoConfigs() throws Exception {
beansProject.addConfig("basic-bean-config.xml", IBeansConfig.Type.MANUAL);
beansProject.addConfig("java:org.test.spring.SimpleConfigurationClass", IBeansConfig.Type.MANUAL);
ByteArrayOutputStream os = new ByteArrayOutputStream();
XMLWriter writer = new XMLWriter(os);
BeansProjectDescriptionWriter.write(beansProject, writer);
writer.flush();
writer.close();
String description = os.toString();
Matcher matcher = Pattern
.compile(