* @throws Exception
*/
@Test
public void asListAndFilterInMemoryByLessThanOrEqualCriterionOfCipherText()
throws Exception {
Hoge hoge1 = new Hoge();
Hoge hoge2 = new Hoge();
Hoge hoge3 = new Hoge();
hoge1.setMyCipherText(new Text("1102"));
hoge2.setMyCipherText(new Text("1103"));
hoge3.setMyCipherText(new Text("1104"));
DatastoreUtil.put(ds, null, DatastoreUtil.modelToEntity(ds, hoge1));
DatastoreUtil.put(ds, null, DatastoreUtil.modelToEntity(ds, hoge2));
DatastoreUtil.put(ds, null, DatastoreUtil.modelToEntity(ds, hoge3));
List<Hoge> list =
new ModelQuery<Hoge>(ds, meta)