Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for testIn_serialization (0.27 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java

            assertEquals("Level 2", level2.getMessage());
            assertEquals("Level 3 - Root cause", level3.getMessage());
        }
    
        /**
         * Test serialization
         */
        public void test_serialization() throws Exception {
            String message = "Serialization test";
            Exception cause = new IOException("IO cause");
            CrawlerSystemException original = new CrawlerSystemException(message, cause);
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 20K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java

            responseData4.setHttpStatusCode(404);
            assertFalse(rule.match(responseData4));
        }
    
        /**
         * Test Rule serialization
         */
        public void test_serialization() throws Exception {
            TestResponseProcessor processor = new TestResponseProcessor("serializeProcessor");
            TestRule originalRule = new TestRule("serializeRule", processor, true);
    
            // Serialize
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      public void testOf_last() {
        SortedSet<String> set = of("e", "f", "b", "d", "c");
        assertEquals("f", set.last());
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testOf_serialization() {
        SortedSet<String> set = of("e", "f", "b", "d", "c");
        SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
        assertTrue(elementsEqual(set, copy));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 46.7K bytes
    - Viewed (0)
Back to top