Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setConnection (0.11 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

                artifactId = id;
            }
        }
    
        public static class Scm {
            private String connection;
    
            public void setConnection(String connection) {
                this.connection = connection;
            }
    
            public String getConnection() {
                return connection;
            }
        }
    
        public static class ValueHolder {
            private final Object value;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            Model out = interpolator.interpolateModel(model, new File("."), createModelBuildingRequest(context), collector);
    
            assertProblemFree(collector);
            assertEquals("${test}/somepath", out.getScm().getConnection());
        }
    
        @Test
        public void testShouldThrowExceptionOnRecursiveScmConnectionReference() throws Exception {
            Scm scm = Scm.newBuilder()
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top