Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testErrors (0.04 sec)

  1. src/test/java/org/codelibs/core/log/LoggerTest.java

         * @throws Exception
         */
        @Test
        public void testWarn() throws Exception {
            logger.warn("warn");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testError() throws Exception {
            logger.error("error");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testFatal() throws Exception {
            logger.fatal("fatal");
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/util/transport/ResponseTest.java

            assertTrue(mockResponse.isError());
    
            // Verify the method was called
            verify(mockResponse, times(2)).isError();
        }
    
        @Test
        void testError() {
            // Call the method
            mockResponse.error();
    
            // Verify that the method was called
            verify(mockResponse, times(1)).error();
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top