List<Stanza> stanzas = history.createStanzas(RECEIVER_OCCUPANT, true, new History(3, null, null, null));
assertStanzas(stanzas, 3);
}
public void testZeroStanzas() throws Exception {
List<Stanza> stanzas = history.createStanzas(RECEIVER_OCCUPANT, true, new History(0, null, null, null));
assertStanzas(stanzas, 0);
}