Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_constructorWithoutErrors (0.17 sec)

  1. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexResponseTest.java

    import static org.junit.Assert.assertTrue;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.junit.Test;
    
    public class SuggestIndexResponseTest {
    
        @Test
        public void test_constructorWithoutErrors() throws Exception {
            SuggestIndexResponse response = new SuggestIndexResponse(10, 5, null, 100);
    
            assertNotNull(response);
            assertEquals(10, response.getNumberOfSuggestDocs());
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/index/SuggestDeleteResponseTest.java

    import static org.junit.Assert.assertTrue;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.junit.Test;
    
    public class SuggestDeleteResponseTest {
    
        @Test
        public void test_constructorWithoutErrors() throws Exception {
            SuggestDeleteResponse response = new SuggestDeleteResponse(null, 100);
    
            assertNotNull(response);
            assertEquals(100, response.getTook());
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Thu Nov 13 00:40:54 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top