Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test705 (0.07 sec)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 200);
            assertEquals(100, list.size());
            assertEquals("test1", list.get(0).getInput());
            assertEquals("test100", list.get(99).getInput());
        }
    
        public void test_specialCharacters() throws Exception {
            // Test with special characters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/util/ResourceManagerTest.java

        }
    
        @Test
        @DisplayName("Test resource unregistration")
        void testResourceUnregistration() {
            TestResource resource = new TestResource("test5");
            String resourceId = resourceManager.registerResource(resource);
    
            resourceManager.unregisterResource(resourceId);
    
            // After unregistration, the resource should be removed from active tracking
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top