+ CASTestSetup.LEMMA_LIST_FEAT;
final Feature lemmaList = this.ts.getFeatureByFullName(lemmaListName);
assertTrue(lemmaList != null);
String[] javaArray = { "1", "2", "3" };
StringArrayFS casArray = this.cas.createStringArrayFS(3);
casArray.copyFromArray(javaArray, 0, 0, 3);
FeatureStructure token = this.cas.createFS(this.ts.getType(CASTestSetup.TOKEN_TYPE));
assertTrue(token.getFeatureValue(lemmaList) == null);
token.setFeatureValue(lemmaList, casArray);
assertTrue(((StringArrayFS) token.getFeatureValue(lemmaList)).get(0) == "1");
String hello = "Hello.";