assertThat(updated.simpleList, hasItem("!"));
}
@Test
public void testPushAllVarArgs() throws Exception {
MockObject toSave = new MockObject("blah", "string", 10);
toSave.simpleList = Arrays.asList("hello");
coll.insert(toSave);
coll.updateById("blah", DBUpdate.pushAll("simpleList", "world", "!"));
MockObject updated = coll.findOneById("blah");
assertThat(updated.simpleList, hasSize(3));
assertThat(updated.simpleList, hasItem("world"));
assertThat(updated.simpleList, hasItem("!"));
}