Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testPerLookupInstantiation (0.43 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

                    ChecksumFailedException.class,
                    () -> wagonManager.getArtifact(artifact, repo, null, false),
                    "Checksum verification did not fail");
        }
    
        @Test
        void testPerLookupInstantiation() throws Exception {
            String protocol = "perlookup";
    
            Wagon one = wagonManager.getWagon(protocol);
            Wagon two = wagonManager.getWagon(protocol);
    
            assertNotSame(one, two);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top