Package org.infinispan.query.test

Examples of org.infinispan.query.test.VeryLongIndexNamedClass


      assertEquals(100, cq.getResultSize());
   }

   private void prepareData() {
      VeryLongIndexNamedClass obj = null;

      for(int i = 0; i < 100; i++) {
         obj = new VeryLongIndexNamedClass("value" + i);
         cache1.put("key" + i, obj);
      }
   }
View Full Code Here


      assertEquals(100, cq.getResultSize());
   }

   private void prepareData() {
      VeryLongIndexNamedClass obj = null;

      for(int i = 0; i < 100; i++) {
         obj = new VeryLongIndexNamedClass("value" + i);
         cache1.put("key" + i, obj);
      }
   }
View Full Code Here

      assertEquals(100, cq.getResultSize());
   }

   private void prepareData() {
      VeryLongIndexNamedClass obj = null;

      for(int i = 0; i < 100; i++) {
         obj = new VeryLongIndexNamedClass("value" + i);
         cache1.put("key" + i, obj);
      }
   }
View Full Code Here

TOP

Related Classes of org.infinispan.query.test.VeryLongIndexNamedClass

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.