Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for testCantRemove (0.08 seconds)

  1. android/guava-tests/test/com/google/common/base/AbstractIteratorTest.java

                endOfData();
                throw new SomeUncheckedException();
              }
            };
        assertThrows(SomeUncheckedException.class, iter::hasNext);
      }
    
      public void testCantRemove() {
        Iterator<Integer> iter =
            new AbstractIterator<Integer>() {
              boolean haveBeenCalled;
    
              @Override
              public Integer computeNext() {
                if (haveBeenCalled) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/base/AbstractIteratorTest.java

                endOfData();
                throw new SomeUncheckedException();
              }
            };
        assertThrows(SomeUncheckedException.class, iter::hasNext);
      }
    
      public void testCantRemove() {
        Iterator<Integer> iter =
            new AbstractIterator<Integer>() {
              boolean haveBeenCalled;
    
              @Override
              public Integer computeNext() {
                if (haveBeenCalled) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/collect/AbstractIteratorTest.java

                throw new SomeUncheckedException();
              }
            };
        assertThrows(SomeUncheckedException.class, iter::hasNext);
      }
    
      @SuppressWarnings("DoNotCall")
      public void testCantRemove() {
        Iterator<Integer> iter =
            new AbstractIterator<Integer>() {
              boolean haveBeenCalled;
    
              @Override
              public Integer computeNext() {
                if (haveBeenCalled) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 8K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/collect/AbstractIteratorTest.java

                throw new SomeUncheckedException();
              }
            };
        assertThrows(SomeUncheckedException.class, iter::hasNext);
      }
    
      @SuppressWarnings("DoNotCall")
      public void testCantRemove() {
        Iterator<Integer> iter =
            new AbstractIterator<Integer>() {
              boolean haveBeenCalled;
    
              @Override
              public Integer computeNext() {
                if (haveBeenCalled) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 8K bytes
    - Click Count (0)
Back to Top