- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 3,688 for avoid (2.08 sec)
-
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java
* same package to access its fields. */ public class TransWaitNamedPipeTest { @BeforeEach public void setUp() { MockitoAnnotations.openMocks(this); } @Test public void testConstructorInitializesFields() { // Test constructor initialization with proper expectations String pipeName = "\\\\pipe\\testPipe";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
/** * Test secure password handling in NtlmPasswordAuthenticator */ public class NtlmPasswordAuthenticatorTest { /** * Test password storage using char arrays */ @Test public void testPasswordAsCharArray() { String testPassword = "TestPassword123!"; NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("testuser", testPassword); // Check that password can be retrieved
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java
@BeforeEach void setUp() { MockitoAnnotations.openMocks(this); buffer = new DfsReferralResponseBuffer(); } @Nested @DisplayName("Constructor and Initial State Tests") class ConstructorTests { @Test @DisplayName("Should initialize with null referrals") void testInitialState() { assertNull(buffer.getReferrals());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeImplTest.java
// Test case for the constructor of SmbTreeImpl @Test void testSmbTreeImplConstructor() { SmbTreeImpl tree = new SmbTreeImpl(session, "SHARE", "A:"); assertNotNull(tree); assertEquals("SHARE", tree.getShare()); assertEquals("A:", tree.getService()); } // Test case for the matches method @Test void testMatches() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
@Nested @DisplayName("Constructor Tests") class ConstructorTests { @Test @DisplayName("Constructor with rpc.uuid_t should copy all fields correctly") void testConstructorWithRpcUuidT() { // Arrange rpc.uuid_t rpcUuid = new rpc.uuid_t(); rpcUuid.time_low = TIME_LOW; rpcUuid.time_mid = TIME_MID;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/CloseableUtilTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
*/ public class FessEnvTest extends UnitFessTestCase { private FessEnv.SimpleImpl fessEnv; @Override public void setUp() throws Exception { super.setUp(); fessEnv = new FessEnv.SimpleImpl(); } // Test constant field values public void xtest_constantFields() { assertEquals("lasta_di.smart.deploy.mode", FessEnv.lasta_di_SMART_DEPLOY_MODE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java
package org.codelibs.fess.exception; import org.apache.lucene.queryparser.classic.ParseException; import org.codelibs.fess.unit.UnitFessTestCase; public class QueryParseExceptionTest extends UnitFessTestCase { public void test_constructor() { // Test constructor with ParseException cause ParseException parseException = new ParseException("Test parse error");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoTokenTest.java
void defaultStateIsNull() { TestSpnegoToken t = new TestSpnegoToken(); assertNull(t.getMechanismToken(), "mechanismToken should default to null"); assertNull(t.getMechanismListMIC(), "mechanismListMIC should default to null"); } @Test @DisplayName("Setter and getter for mechanismToken work") void setGetMechanismToken() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0)