Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testToStringNullSafe (0.08 sec)

  1. compat/maven-model/src/test/java/org/apache/maven/model/ModelTest.java

            new Model().equals(new Model());
        }
    
        @Test
        void testEqualsIdentity() {
            Model thing = new Model();
            assertEquals(thing, thing);
        }
    
        @Test
        void testToStringNullSafe() {
            assertNotNull(new Model().toString());
        }
    
        @Test
        void testPropertiesClear() {
            // Test for issue #11552: NullPointerException when clearing properties
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 08:09:30 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top