- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for test_addRole (0.07 sec)
-
src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilderTest.java
indexItems(); SuggestResponse response = suggester.suggest().setQuery("test").addTag("tag1").execute().getResponse(); assertNotNull(response); } @Test public void test_addRole() throws Exception { indexItems(); SuggestResponse response = suggester.suggest().setQuery("test").addRole(SuggestConstants.DEFAULT_ROLE).execute().getResponse(); assertNotNull(response);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilderTest.java
indexItems(); PopularWordsResponse response = suggester.popularWords().addTag("tag1").execute().getResponse(); assertNotNull(response); } @Test public void test_addRole() throws Exception { indexItems(); PopularWordsResponse response = suggester.popularWords().addRole(SuggestConstants.DEFAULT_ROLE).execute().getResponse(); assertNotNull(response); }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java
assertNotNull(response); assertTrue(response.getTotal() > 0); } @Test public void test_addRole() throws Exception { indexQueryItems(); PopularWordsResponse response = suggester.popularWords().setSize(10).addRole(SuggestConstants.DEFAULT_ROLE).execute().getResponse();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 6.9K bytes - Viewed (0)