OOFILE Validation Suite - Test 27 This tests the word parser used in generating keyword indices. The following parses 'This is a test Cabbage' skipping: 'is' and 'a' because they are less than the minimum word length of 3 'cabbage' because it is on the list of 'stop words' which are ignored This test Now reparse with a different string, retaining the stoplist & min length 'Even longer and sillier string about cabbage and cabbages and Kings' Note: a fancier word parser that does 'stemming' would also remove 'cabbages' by trimming it down to 'cabbage' and then dropping it because 'cabbage' is on the stop words list. Even longer and sillier string about and cabbages and Kings Test Completed