Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_concurrentModification (0.94 sec)

  1. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            assertArrayEquals(new String[] { "x", "y" }, item.getInputs());
            assertEquals("z", item.getOutput());
        }
    
        // Test concurrent modification
        public void test_concurrentModification() throws Exception {
            writeTestFile("a,b => c\nd,e => f\n");
    
            // Get an item
            OptionalEntity<CharMappingItem> item1 = charMappingFile.get(1L);
            assertTrue(item1.isPresent());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/testing/TestLogHandlerTest.java

        assertEquals(Level.INFO, record.getLevel());
        assertEquals("message", record.getMessage());
        assertSame(EXCEPTION, record.getThrown());
      }
    
      public void testConcurrentModification() throws Exception {
        // Tests for the absence of a bug where logging while iterating over the
        // stored log records causes a ConcurrentModificationException
        assertTrue(handler.getStoredLogRecords().isEmpty());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top