Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testGroup (0.04 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/project/artifact/DefaultMavenMetadataCacheTest.java

        @BeforeEach
        void setUp() {
            repositorySystem = new TestRepositorySystem();
        }
    
        @Test
        void testCacheKey() throws Exception {
            Artifact a1 = repositorySystem.createArtifact("testGroup", "testArtifact", "1.2.3", "jar");
            @SuppressWarnings("deprecation")
            ArtifactRepository lr1 = new DelegatingLocalArtifactRepository(repositorySystem.createDefaultLocalRepository());
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (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 })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (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]);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top