- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {ArrayList a =
new ArrayList<String>()
new ArrayList()
new ArrayList<Object>()
- Smart code suggestions by Codota
}
/** * Test time query duration */ @Test public void testTimeQuery() { WikittyQuery query = WikittyQueryParser.parse( "ProductPicture.price=*"); WikittyQueryResult<Product> result = wikittyClient.findAllByQuery(Product.class, query); Assert.assertTrue(0 < result.getTimeQuery()); Assert.assertTrue(0 < result.getTimeConvertion()); }