// parser.parse(Parse.parseParse("She was just another freighter from the " +
// "States and she seemed as commonplace as her name ."));
// Test serializing and de-serializing model
ByteArrayOutputStream outArray = new ByteArrayOutputStream();
model.serialize(outArray);
outArray.close();
new ParserModel(new ByteArrayInputStream(outArray.toByteArray()));
// TODO: compare both models