Github user ahgittin commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/899#discussion_r152286086
--- Diff:
launcher/src/test/java/org/apache/brooklyn/launcher/AbstractBrooklynLauncherRebindTest.java
---
@@ -184,7 +190,87 @@ protected File newTmpBundle(Map<String, byte[]> files,
VersionedName bundleName,
}
return bf;
}
+
+ BundleFile.Builder bundleBuilder() {
+ return new BundleFile.Builder(this);
+ }
+ protected static class BundleFile {
--- End diff --
nice. maybe make its own class?
---