- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for test_constructorWithEmptyErrors (2.98 sec)
-
src/test/java/org/codelibs/fess/suggest/index/SuggestDeleteResponseTest.java
assertEquals(100, response.getTook()); assertTrue(response.hasError()); assertEquals(2, response.getErrors().size()); } @Test public void test_constructorWithEmptyErrors() throws Exception { List<Throwable> errors = new ArrayList<>(); SuggestDeleteResponse response = new SuggestDeleteResponse(errors, 100); assertNotNull(response);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Nov 13 00:40:54 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexResponseTest.java
assertEquals(100, response.getTook()); assertTrue(response.hasError()); assertEquals(2, response.getErrors().size()); } @Test public void test_constructorWithEmptyErrors() throws Exception { List<Throwable> errors = new ArrayList<>(); SuggestIndexResponse response = new SuggestIndexResponse(10, 5, errors, 100); assertNotNull(response);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Nov 13 00:40:54 UTC 2025 - 4.2K bytes - Viewed (0)