public void testInsert() throws EntityNotFoundException, IllegalAccessException {
HasUnindexedPropertiesJDO pojo = new HasUnindexedPropertiesJDO();
pojo.setUnindexedString("str");
pojo.setUnindexedList(Utils.newArrayList("a", "b", "c"));
pojo.setUnindexedText(new Text("unindexed text"));
pojo.setUnindexedBlob(new Blob("unindexed blob".getBytes()));
pojo.setText(new Text("text"));
pojo.setBlob(new Blob("blob".getBytes()));
beginTxn();
pm.makePersistent(pojo);
commitTxn();