@Override
public void tearDown() throws Exception {
}
public void testReadComponentType() throws Exception {
ComponentTypeProcessor componentTypeProcessor = new ComponentTypeProcessor(assemblyFactory, policyFactory, staxProcessor);
InputStream is = getClass().getResourceAsStream("CalculatorImpl.componentType");
XMLStreamReader reader = inputFactory.createXMLStreamReader(is);
ComponentType componentType = componentTypeProcessor.read(reader);
assertNotNull(componentType);
//new PrintUtil(System.out).print(componentType);
}