Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 401 - 410 of 491 for assertNull (0.51 seconds)

  1. src/test/java/jcifs/smb1/smb1/NtlmPasswordAuthenticationTest.java

    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertNotEquals;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    import org.junit.jupiter.api.AfterAll;
    import org.junit.jupiter.api.BeforeAll;
    import org.junit.jupiter.api.Test;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 9.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            assertNull(result);
        }
    
        // Test getThumbnailFile with blank path
        @Test
        public void test_getThumbnailFile_blankPath() {
            Map<String, Object> docMap = new HashMap<>();
            // No _id field, so docid will be null
    
            File result = thumbnailManager.getThumbnailFile(docMap);
            assertNull(result);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 40.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

            jobHelper.setMonitorInterval(1800);
            assertEquals(1800, jobHelper.monitorInterval);
        }
    
        @Test
        public void test_getJobRuntime_null() {
            assertNull(jobHelper.getJobRuntime());
        }
    
        @Test
        public void test_monitorTarget_expired_withoutEndTime() {
            JobLog jobLog = new JobLog();
            jobLog.setId("test-log-1");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            assertEquals(Relation.EQUAL_TO.toString(), result.getAllRecordCountRelation());
            assertEquals(123, result.getQueryTime());
            assertFalse(result.isPartialResults());
            assertNull(result.getFacetResponse());
            assertNotNull(result.getDocumentList());
            assertTrue(result.getDocumentList().isEmpty());
        }
    
        /**
         * Test SearchResult with documents.
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/MapMergeTester.java

                        }));
        expectUnchanged();
      }
    
      @MapFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(absent = ZERO)
      public void testMergePresentToNull() {
        assertNull(
            "Map.merge(present, value, functionReturningNull) should return null",
            getMap()
                .merge(
                    k0(),
                    v3(),
                    (oldV, newV) -> {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            deleteItem.setNewInput("");
    
            StopwordsFile.StopwordsUpdater updater = stopwordsFile.new StopwordsUpdater(deleteItem);
    
            StopwordsItem result = updater.write(originalItem);
            assertNull(result);
    
            updater.close();
        }
    
        @Test
        public void test_updater_mismatchedItem() {
            loadTestData();
    
            StopwordsItem originalItem = stopwordsFile.get(1).get();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18K bytes
    - Click Count (0)
  8. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java

    import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertNull;
    import static org.junit.jupiter.api.Assertions.assertSame;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.mockito.Mockito.atLeastOnce;
    import static org.mockito.Mockito.verify;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 10.7K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java

            assertEquals("909.5T", FessFunctions.formatFileSize(1000000000000000L));
        }
    
        @Test
        public void test_parseDate() {
            Date date;
    
            date = FessFunctions.parseDate("");
            assertNull(date);
    
            date = FessFunctions.parseDate("2004-04-01T12:34:56.123Z");
            assertEquals("2004-04-01T12:34:56.123Z", FessFunctions.formatDate(date));
    
            date = FessFunctions.parseDate("2004-04-01T12:34:56Z");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6K bytes
    - Click Count (0)
  10. src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java

    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertNull;
    import static org.junit.jupiter.api.Assertions.assertThrows;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.when;
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 9.7K bytes
    - Click Count (0)
Back to Top