Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testRemove_someRemaining (0.14 sec)

  1. guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java

      }
    
      public void testRemove_nonePresent() {
        when(backingMap.get(KEY)).thenReturn(null);
    
        assertEquals(0, multiset.remove(KEY, 400));
      }
    
      public void testRemove_someRemaining() {
        int countToRemove = 30;
        int countRemaining = 1;
        AtomicInteger current = new AtomicInteger(countToRemove + countRemaining);
    
        when(backingMap.get(KEY)).thenReturn(current);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java

      }
    
      public void testRemove_nonePresent() {
        when(backingMap.get(KEY)).thenReturn(null);
    
        assertEquals(0, multiset.remove(KEY, 400));
      }
    
      public void testRemove_someRemaining() {
        int countToRemove = 30;
        int countRemaining = 1;
        AtomicInteger current = new AtomicInteger(countToRemove + countRemaining);
    
        when(backingMap.get(KEY)).thenReturn(current);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top