Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for TestGroup (0.03 seconds)

  1. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

            assertFalse(result.isPresent());
        }
    
        @Test
        public void test_getSAMAccountGroupName_withBlankBindDn() {
            LdapManager ldapManager = new LdapManager();
            ldapManager.init();
    
            // Blank bindDn should return empty
            OptionalEntity<String> result = ldapManager.getSAMAccountGroupName("", "testGroup");
            assertFalse(result.isPresent());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

        @UriType(protocolType = ProtocolType.WEB, groups = { TestGroup.class })
        private String testFieldWithGroups;
    
        // Test field with payload
        @UriType(protocolType = ProtocolType.WEB, payload = { TestPayload.class })
        private String testFieldWithPayload;
    
        // Test field with multiple groups
        @UriType(protocolType = ProtocolType.FILE, groups = { TestGroup.class, AnotherTestGroup.class })
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

                    return "multi.max";
                }
            };
    
            assertEquals("Should have 2 groups", 2, multiAnnotation.groups().length);
            assertEquals("First group should be TestGroup", TestGroup.class, multiAnnotation.groups()[0]);
            assertEquals("Second group should be AnotherTestGroup", AnotherTestGroup.class, multiAnnotation.groups()[1]);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.4K bytes
    - Click Count (0)
Back to Top