- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for testGroup (0.05 seconds)
-
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) -
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) -
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) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
Properties testProp = new Properties(); Map<String, String> result = Maps.fromProperties(testProp); assertTrue(result.isEmpty()); testProp.setProperty("first", "true"); result = Maps.fromProperties(testProp); assertThat(result.get("first")).isEqualTo("true"); assertEquals(1, result.size()); testProp.setProperty("second", "null");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 63.2K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/GAVUtilsTest.java
void shouldHandlePOMWithSpecialCharacters() throws Exception { String pomXml = PomBuilder.create() .groupId("com.example-test_group") .artifactId("test-project.artifact") .version("1.0.0-SNAPSHOT") .build(); Document document = Document.of(pomXml);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 17.3K bytes - Click Count (0)