Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestInfo (0.18 sec)

  1. src/test/java/jcifs/internal/SmbBasicFileInfoTest.java

         */
        private static class TestInfo implements SmbBasicFileInfo {
            private final int attributes;
            private final long createTime;
            private final long lastWriteTime;
            private final long lastAccessTime;
            private final long size;
    
            TestInfo(int attributes, long createTime, long lastWriteTime, long lastAccessTime, long size) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/fscc/FileInternalInfoTest.java

            for (long testValue : testValues) {
                FileInternalInfo testInfo = new FileInternalInfo();
                byte[] buffer = new byte[8];
                SMBUtil.writeInt8(testValue, buffer, 0);
    
                int bytesDecoded = testInfo.decode(buffer, 0, buffer.length);
                assertEquals(8, bytesDecoded);
                assertEquals(testValue, testInfo.getIndexNumber());
    
                // Test encode as well
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/log/LoggerTest.java

         * @throws Exception
         */
        @Test
        public void testDebug() throws Exception {
            logger.debug("debug");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testInfo() throws Exception {
            logger.info("info");
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testWarn() throws Exception {
            logger.warn("warn");
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top