Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testJavaSerialization (0.38 seconds)

  1. src/test/java/jcifs/spnego/SpnegoExceptionTest.java

            assertTrue(s.contains("hello"));
        }
    
        @Test
        @DisplayName("Should serialize and deserialize preserving message and cause")
        void testJavaSerialization() throws Exception {
            // Given
            SpnegoException original = new SpnegoException("serialize me", new IllegalArgumentException("iaex"));
    
            // When
            byte[] bytes;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        BloomFilter<Integer> bf1 = BloomFilter.create(integerFunnel(), 1);
        assertFalse(bf1.isCompatible(bf1));
        assertThrows(IllegalArgumentException.class, () -> bf1.putAll(bf1));
      }
    
      public void testJavaSerialization() {
        BloomFilter<byte[]> bf = BloomFilter.create(byteArrayFunnel(), 100);
        for (int i = 0; i < 10; i++) {
          bf.put(Ints.toByteArray(i));
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 23K bytes
    - Click Count (0)
Back to Top