new String[]{"one revised", "two revised", "[2] two", "[3] three", "five revised", "six revised", "[5] five"};
DiffService diffService = new DiffServiceImpl(getAlgo());
Revision revision = diffService.diff(orig, rev);
Object[] patched = revision.patch(orig);
assertTrue(diffService.compare(patched, rev));
}
public void testShuffle() throws Exception
{
Object[] orig = new String[]{"[1] one", "[2] two", "[3] three", "[4] four", "[5] five", "[6] six"};