Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testPropertiesAsMap (0.16 sec)

  1. maven-core/src/test/java/org/apache/maven/internal/impl/PropertiesAsMapTest.java

    import static org.junit.jupiter.api.Assertions.assertThrows;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    class PropertiesAsMapTest {
    
        @Test
        void testPropertiesAsMap() {
            Properties props = new Properties();
            props.setProperty("foo1", "bar1");
            props.setProperty("foo2", "bar2");
            PropertiesAsMap pam = new PropertiesAsMap(props);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2.2K bytes
    - Viewed (0)
Back to top