Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for testIn_serialization (0.15 sec)

  1. android/guava-tests/test/com/google/common/base/PredicatesTest.java

                Predicates.in(differentOrder))
            .addEqualityGroup(Predicates.in(differentNums))
            .testEquals();
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testIn_serialization() {
        checkSerialization(Predicates.in(Arrays.asList(1, 2, 3, null)));
      }
    
      public void testIn_handlesNullPointerException() {
        class CollectionThatThrowsNullPointerException<T> extends ArrayList<T> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 32.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java

            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_serialization() {
            // Test that the exception has serialVersionUID defined
            String message = "Serialization test";
            SearchEngineClientException exception = new SearchEngineClientException(message);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/DocListTest.java

            assertTrue(result.contains("processingTime=500"));
            assertTrue(result.contains("elementData=["));
            assertTrue(result.contains("id=1"));
        }
    
        public void test_serialization() {
            DocList docList = new DocList();
    
            assertTrue(docList instanceof java.io.Serializable);
        }
    
        public void test_large_values() {
            DocList docList = new DocList();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            assertEquals("test_stackTrace", firstElement.getMethodName());
            assertEquals(this.getClass().getName(), firstElement.getClassName());
        }
    
        public void test_serialization() {
            // Test that the exception is serializable
            String message = "Serialization test";
            LdapConfigurationException exception = new LdapConfigurationException(message);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java

                assertTrue(e instanceof DictionaryExpiredException);
            } catch (Exception e) {
                fail("Should have caught as RuntimeException");
            }
        }
    
        public void test_serialization() throws Exception {
            // Test that the exception is serializable
            DictionaryExpiredException original = new DictionaryExpiredException();
    
            // Serialize
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java

                assertTrue(caught.getMessage().contains("ServletException"));
            } catch (Exception e) {
                fail("Should have caught ServletRuntimeException");
            }
        }
    
        public void test_serialization() {
            // Test that the serialVersionUID is properly defined
            // This test verifies that the class can be instantiated and has the serial version UID
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

                    foundTestMethod = true;
                    break;
                }
            }
            assertTrue(foundTestMethod);
        }
    
        public void test_serialization() {
            // Test that the exception has serialVersionUID
            // This test verifies the exception is serializable
            String message = "Serialization test";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java

            assertTrue(exception instanceof RuntimeException);
            assertTrue(exception instanceof Exception);
            assertTrue(exception instanceof Throwable);
        }
    
        public void test_serialization() {
            // Test that the exception has the correct serialVersionUID field
            ScriptEngineException exception = new ScriptEngineException("Serialization test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            assertEquals(innerCause, exception.getCause().getCause());
            assertEquals("Invalid image format", exception.getCause().getCause().getMessage());
        }
    
        public void test_serialization() {
            // Test that the exception has serialVersionUID
            ThumbnailGenerationException exception = new ThumbnailGenerationException("Test serialization");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            assertTrue(exception instanceof RuntimeException);
            assertTrue(exception instanceof Exception);
            assertTrue(exception instanceof Throwable);
        }
    
        public void test_serialization() {
            // Test serialVersionUID exists
            ResultOffsetExceededException exception = new ResultOffsetExceededException("Test serialization");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
Back to top