Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testAddAtIndexConcurrentWithIteration (0.37 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/testers/ListAddAtIndexTester.java

        getList().add(0, e3());
        expectAdded(0, e3());
      }
    
      @CollectionFeature.Require(FAILS_FAST_ON_CONCURRENT_MODIFICATION)
      @ListFeature.Require(SUPPORTS_ADD_WITH_INDEX)
      public void testAddAtIndexConcurrentWithIteration() {
        try {
          Iterator<E> iterator = collection.iterator();
          getList().add(0, e3());
          iterator.next();
          fail("Expected ConcurrentModificationException");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/ListAddAtIndexTester.java

        getList().add(0, e3());
        expectAdded(0, e3());
      }
    
      @CollectionFeature.Require(FAILS_FAST_ON_CONCURRENT_MODIFICATION)
      @ListFeature.Require(SUPPORTS_ADD_WITH_INDEX)
      public void testAddAtIndexConcurrentWithIteration() {
        try {
          Iterator<E> iterator = collection.iterator();
          getList().add(0, e3());
          iterator.next();
          fail("Expected ConcurrentModificationException");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top