- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for testConfigs (0.06 seconds)
-
src/test/java/jcifs/config/BaseConfigurationTest.java
BaseConfiguration testConfig = new BaseConfiguration(false); testConfig.useNTSmbs = true; testConfig.useNtStatus = true; testConfig.useExtendedSecurity = true; testConfig.useLargeReadWrite = true; testConfig.useUnicode = true; testConfig.initDefaults(); assertTrue((testConfig.getCapabilities() & SmbConstants.CAP_NT_SMBS) != 0);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 20.6K bytes - Click Count (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
// When PropertyConfiguration testConfig = new PropertyConfiguration(minimalProps); // Then // Hostname may be null when not provided assertTrue(testConfig.getConnTimeout() > 0); assertTrue(testConfig.getSoTimeout() > 0); assertNotNull(testConfig.getMinimumVersion()); assertNotNull(testConfig.getMaximumVersion()); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
return value; } }; assertEquals(value, testConfig.getTimeAdjustTimeMillisAsLong()); FessTimeResourceProvider testProvider = new FessTimeResourceProvider(testConfig); assertNotNull(testProvider); } } // Test centralTimeZone reference @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java
void testConfigurationHandling() { // Given - create a mock configuration Configuration testConfig = mock(Configuration.class); // When Smb2FlushResponse newResponse = new Smb2FlushResponse(testConfig); // Then assertNotNull(newResponse); // Verify the response was created successfully with the configuration
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
@DisplayName("Verify Configuration is passed to parent") void testConfigurationPassedToParent() { // Arrange Configuration testConfig = mock(Configuration.class); // Act TransWaitNamedPipeResponse testResponse = new TransWaitNamedPipeResponse(testConfig); // Assert assertNotNull(testResponse); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java
@DisplayName("Verify Configuration is passed to parent") void testConfigurationPassedToParent() { // Arrange Configuration testConfig = mock(Configuration.class); // Act TransPeekNamedPipeResponse testResponse = new TransPeekNamedPipeResponse(testConfig); // Assert assertNotNull(testResponse); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.8K bytes - Click Count (0)