public void testStringBuilderMultipleStrings() throws Exception {
String toHash = "never can say goodbye";
int expected = getHashCode(toHash);
StringBuilder builder = new StringBuilder();
// split string by word boundaries
for (String part : toHash.split("\\b")) {
builder.addString(part);
}
assertHash(builder.build(), true, expected);
}