WordprocessingMLPackage thisPackage = WordprocessingMLPackage.load(
new java.io.File(resourceDir + "comments-one.docx"));
WordprocessingMLPackage otherPackage = WordprocessingMLPackage.load(
new java.io.File(resourceDir + "paragraph-single.docx"));
Alterations alterations = AlteredParts.start(thisPackage, otherPackage);
alterations.debug();
assertTrue( alterations.getPartsAdded().size()==1 );
assertTrue( alterations.getPartsModified().size()==3 );
assertTrue( alterations.getPartsDeleted().size()==0 );
}