Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testChildConfigurationElement (0.1 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorPathTest.java

            configurator.configureBean(request);
    
            assertEquals(Paths.get("base/test").toAbsolutePath(), bean.file);
        }
    
        @Test
        void testChildConfigurationElement() throws BeanConfigurationException {
            SomeBean bean = new SomeBean();
    
            Xpp3Dom config = toConfig("<wrapper><file>test</file></wrapper>");
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorTest.java

            configurator.configureBean(request);
    
            assertEquals(new File("base/test").getAbsoluteFile(), bean.file);
        }
    
        @Test
        void testChildConfigurationElement() throws BeanConfigurationException {
            SomeBean bean = new SomeBean();
    
            Xpp3Dom config = toConfig("<wrapper><file>test</file></wrapper>");
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top