assertNotNull(copyEntries);
assertThat(copyEntries.size(), is(2));
Iterator<CopyEntry> iterator = copyEntries.iterator();
CopyEntry copyEntry1 = iterator.next();
String copyEntrySrc1 = TestUtils.readField("src", copyEntry1);
String copyEntryDest1 = TestUtils.readField("dest", copyEntry1);
Boolean copyEntryStaging1 = TestUtils.readField("staging", copyEntry1);
assertThat(copyEntrySrc1, is("foo.jar"));
assertThat(copyEntryDest1, is("/tmp"));
assertThat(copyEntryStaging1, is(true));
CopyEntry copyEntry2 = iterator.next();
String copyEntrySrc2 = TestUtils.readField("src", copyEntry2);
String copyEntryDest2 = TestUtils.readField("dest", copyEntry2);
Boolean copyEntryStaging2 = TestUtils.readField("staging", copyEntry2);
assertThat(copyEntrySrc2, is("foo2.jar"));
assertThat(copyEntryDest2, is("/tmp"));