Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testHelpExecuteDoesNotThrow (0.85 sec)

  1. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/HelpTest.java

            UpgradeContext context = createMockContext();
    
            int result = help.execute(context);
    
            assertEquals(0, result, "Help goal should return 0 (success)");
        }
    
        @Test
        void testHelpExecuteDoesNotThrow() throws Exception {
            UpgradeContext context = createMockContext();
    
            // Should not throw any exceptions
            assertDoesNotThrow(() -> help.execute(context));
        }
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:46:51 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top