Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for test_multiple_instances (0.86 sec)

  1. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

            // Test that CrawlerEngineClient is properly inherited
            assertTrue(crawlerEngineClient instanceof org.codelibs.fess.crawler.client.FesenClient);
        }
    
        // Test multiple instances
        public void test_multipleInstances() {
            // Test that multiple instances can be created independently
            CrawlerEngineClient client1 = new CrawlerEngineClient();
            CrawlerEngineClient client2 = new CrawlerEngineClient();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

                assertTrue(e.getCause() instanceof FessUserNotFoundException);
                assertEquals("User is not found: testuser", e.getCause().getMessage());
            }
        }
    
        public void test_multipleInstances() {
            // Test that multiple instances are independent
            FessUserNotFoundException exception1 = new FessUserNotFoundException("user1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java

            assertTrue(result.length() > "TransWaitNamedPipeResponse[]".length());
        }
    
        @Test
        @DisplayName("Multiple instances should be independent")
        void testMultipleInstances() {
            // Arrange
            TransWaitNamedPipeResponse response1 = new TransWaitNamedPipeResponse(mockConfig);
            TransWaitNamedPipeResponse response2 = new TransWaitNamedPipeResponse(mockConfig);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

                assertEquals(8388608, response.getTotalBytesWritten()); // 8MB total
            }
    
            @Test
            @DisplayName("Should create multiple independent instances")
            void testMultipleInstances() throws SMBProtocolDecodingException {
                SrvCopyChunkCopyResponse response1 = new SrvCopyChunkCopyResponse();
                SrvCopyChunkCopyResponse response2 = new SrvCopyChunkCopyResponse();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/SmbNegotiationTest.java

            assertEquals(5, negotiationDifferentSizes.getResponseRaw().length);
        }
    
        @Test
        @DisplayName("Test multiple instances do not interfere")
        void testMultipleInstances() {
            // Create another instance with different data
            SmbNegotiationRequest anotherRequest = mock(SmbNegotiationRequest.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            assertTrue(result.contains("FessTimeResourceProvider") || result.contains("adjustTimeMillis"));
        }
    
        // Test multiple provider instances
        public void test_multipleInstances() {
            FessTimeResourceProvider provider1 = new FessTimeResourceProvider(mockConfig);
            FessTimeResourceProvider provider2 = new FessTimeResourceProvider(mockConfig);
    
            assertNotNull(provider1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java

            assertTrue(result.length() > "TransPeekNamedPipeResponse[]".length());
        }
    
        @Test
        @DisplayName("Multiple instances should be independent")
        void testMultipleInstances() {
            // Arrange
            TransPeekNamedPipeResponse response1 = new TransPeekNamedPipeResponse(mockConfig);
            TransPeekNamedPipeResponse response2 = new TransPeekNamedPipeResponse(mockConfig);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top