Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for testGetters (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            });
            // Exception is thrown, but cause may or may not be set depending on implementation
            assertNotNull(e.getMessage()); // Should have an error message
        }
    
        @Test
        void testGetters() {
            // Simple test for getter methods
            NtlmContext context = new NtlmContext(mockAuth, true);
            assertFalse(context.isEstablished());
            assertNull(context.getServerChallenge());
    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)
  2. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

            String value = "invalid_encrypted_value";
    
            roleQueryHelper.parseRoleSet(value, true, roleSet);
    
            assertEquals(0, roleSet.size());
        }
    
        @Test
        public void test_setters() {
            final RoleQueryHelper roleQueryHelper = new RoleQueryHelper();
    
            CachedCipher testCipher = new CachedCipher();
            roleQueryHelper.setCipher(testCipher);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            // Hash code should be consistent
            int hash1 = tag1.hashCode();
            int hash2 = tag1.hashCode();
            assertEquals(hash1, hash2);
        }
    
        @Test
        public void test_setters() {
            PrunedTag tag = new PrunedTag("div");
    
            // Test setId
            tag.setId("unique-id");
            assertTrue(tag.toString().contains("id=unique-id"));
    
            // Test setCss
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.1K bytes
    - Click Count (0)
Back to Top