Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testEmptyIterator (0.05 sec)

  1. src/test/java/org/codelibs/core/collection/EmptyIteratorTest.java

        public ExpectedException exception = ExpectedException.none();
    
        /**
         * Test method for
         * {@link org.codelibs.core.collection.EmptyIterator#EmptyIterator()}.
         */
        @Test
        public void testEmptyIterator() {
            final EmptyIterator<String> emptyIterator = new EmptyIterator<String>();
            assertThat(emptyIterator, is(notNullValue()));
        }
    
        /**
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java

            verify(mockFilter, times(2)).accept(any(SmbResource.class));
        }
    
        /**
         * Test iterator with empty delegate.
         */
        @Test
        void testEmptyIterator() {
            // Given
            when(mockDelegate.hasNext()).thenReturn(false);
    
            DirFileEntryAdapterIterator iterator = new DirFileEntryAdapterIterator(mockParent, mockDelegate, null) {
                @Override
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top