Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 483 for assertAll (0.1 seconds)

  1. src/test/java/jcifs/CIFSUnsupportedCryptoExceptionTest.java

        void testDefaultConstructor() {
            // Given & When
            CIFSUnsupportedCryptoException exception = new CIFSUnsupportedCryptoException();
    
            // Then
            assertNull(exception.getMessage(), "Default constructor should have null message");
            assertNull(exception.getCause(), "Default constructor should have null cause");
            assertTrue(exception instanceof RuntimeCIFSException, "Should extend RuntimeCIFSException");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java

            assertNotNull(exception);
            assertNull(exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructorWithNullMessageAndCause() {
            // Test constructor with null message and null cause
            GsaConfigException exception = new GsaConfigException(null, null);
    
            assertNotNull(exception);
            assertNull(exception.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/MapGetTester.java

        assertEquals("get(present) should return the associated value", v0(), get(k0()));
      }
    
      public void testGet_no() {
        assertNull("get(notPresent) should return null", get(k3()));
      }
    
      @MapFeature.Require(ALLOWS_NULL_KEY_QUERIES)
      public void testGet_nullNotContainedButAllowed() {
        assertNull("get(null) should return null", get(null));
      }
    
      @MapFeature.Require(absent = ALLOWS_NULL_KEY_QUERIES)
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Nov 14 23:40:07 GMT 2024
    - 3.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/app/pager/ElevateWordPagerTest.java

            assertEquals(25, elevateWordPager.getPageSize());
            assertEquals(1, elevateWordPager.getCurrentPageNumber());
            assertNull(elevateWordPager.id);
            assertNull(elevateWordPager.suggestWord);
            assertNull(elevateWordPager.versionNo);
    
            elevateWordPager.setAllRecordCount(999);
            assertEquals(999, elevateWordPager.getAllRecordCount());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/pager/FileConfigPagerTest.java

            assertEquals(25, fileConfigPager.getPageSize());
            assertEquals(1, fileConfigPager.getCurrentPageNumber());
            assertNull(fileConfigPager.id);
            assertNull(fileConfigPager.name);
            assertNull(fileConfigPager.versionNo);
    
            fileConfigPager.setAllRecordCount(999);
            assertEquals(999, fileConfigPager.getAllRecordCount());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  6. src/test/java/jcifs/smb1/smb1/NtlmContextTest.java

            NtlmContext context = new NtlmContext(mockAuth, true);
            assertNotNull(context);
            assertFalse(context.isEstablished());
            assertNull(context.getServerChallenge());
            assertNull(context.getSigningKey());
            assertNull(context.getNetbiosName());
    
            int expectedFlags = NtlmFlags.NTLMSSP_REQUEST_TARGET | NtlmFlags.NTLMSSP_NEGOTIATE_NTLM2 | NtlmFlags.NTLMSSP_NEGOTIATE_128
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  7. src/test/java/jcifs/EmptyIteratorTest.java

                    assertFalse(iterator3.hasNext(), "Third instance should have no elements");
    
                    assertNull(iterator1.next(), "First instance next() should return null");
                    assertNull(iterator2.next(), "Second instance next() should return null");
                    assertNull(iterator3.next(), "Third instance next() should return null");
                } catch (CIFSException e) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java

            assertNull(result.getQuery());
            assertEquals("summary request", result.getReasoning());
        }
    
        @Test
        public void test_summary_withNullDocumentUrl() {
            final IntentDetectionResult result = IntentDetectionResult.summary(null, "no doc url");
    
            assertEquals(ChatIntent.SUMMARY, result.getIntent());
            assertNull(result.getDocumentUrl());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceActionTest.java

            final ActionForm form = new ActionForm();
            assertNull(form.replaceAliases);
            assertNull(form.resetDictionaries);
            // numberOfShardsForDoc and autoExpandReplicasForDoc have defaults from FessConfig
            assertNotNull(form.numberOfShardsForDoc);
            assertNotNull(form.autoExpandReplicasForDoc);
            assertNull(form.loadBulkData);
            // rebuildConfigIndex defaults to Constants.ON
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructor_withEmptyMessage() {
            // Test with empty message
            String message = "";
            UnsupportedSearchException exception = new UnsupportedSearchException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
Back to Top