kwin commented on code in PR #354:
URL: 
https://github.com/apache/jackrabbit-filevault/pull/354#discussion_r1772024443


##########
vault-core-it/vault-core-integration-tests/src/main/java/org/apache/jackrabbit/vault/packaging/integration/BinaryPropertiesIT.java:
##########
@@ -228,25 +228,41 @@ private VaultPackage assemblePackage(String rootNodePath) 
throws IOException, Re
         return packMgr.assemble(admin, opts, tmpFile);
     }
 
+    private void getArchiveContents(List<String> list, String path, 
Archive.Entry entry) {
+        String fullname = path + entry.getName();
+        list.add(fullname);
+        for (Archive.Entry en : entry.getChildren()) {
+            getArchiveContents(list, fullname + "/", en);
+        }
+    }
+
+    private void checkExistingMember(Archive archive, String member, 
List<String> existing) throws IOException {

Review Comment:
   maybe implementing with Hamcrest as 
https://hamcrest.org/JavaHamcrest/javadoc/2.2/org/hamcrest/BaseMatcher.html



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@jackrabbit.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to