* @throws XmlPullParserException
*/
public void testFullyPopulatedParentAndEmptyChild()
throws IOException, XmlPullParserException
{
DecorationModel childModel = readModel( "empty.xml" );
DecorationModel parentModel = readModel( "fully-populated-child.xml" );
assembler.assembleModelInheritance( NAME, childModel, parentModel, "http://maven.apache.org/doxia",
"http://maven.apache.org" );
DecorationModel unresolvedModel = readModel( "fully-populated-unresolved.xml" );
assertEquals( "Check result", unresolvedModel, childModel );
assembler.resolvePaths( childModel, "http://maven.apache.org/doxia" );
DecorationModel mergedModel = readModel( "fully-populated-merged.xml" );
assertEquals( "Check result", mergedModel, childModel );
// same with scp url, DOXIASITETOOLS-47
childModel = readModel( "empty.xml" );