- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for testSpecialCharacters (0.08 sec)
-
src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java
} /** * Test with special characters in the target name. */ @Test void testSpecialCharacters() { String specialChars = "サーバー名/ドメイン.com-123!@#$"; // Japanese characters and symbols AvTargetName avTargetName = new AvTargetName(specialChars);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosNameTest.java
assertEquals(testName, mockNetbiosName.getName()); } } @Test @DisplayName("Should handle special characters in names") void testSpecialCharacters() { String[] testNames = { "SERVER-1", "SERVER_A", "SRV123", "MY-SRV" }; for (String testName : testNames) { when(mockNetbiosName.getName()).thenReturn(testName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureCredentialStorageTest.java
new SecureCredentialStorage(new char[0]); }, "Should throw IllegalArgumentException for empty master password"); } @Test public void testSpecialCharacters() throws Exception { // Test with all special characters char[] plaintext = "!@#$%^&*()_+-=[]{}|;':\",./<>?`~\t\n\r".toCharArray(); byte[] encrypted = storage.encryptCredentials(plaintext);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
assertNotNull(type3.getNTResponse()); }); } @Test @DisplayName("Should handle special characters in credentials") void testSpecialCharacters() throws Exception { // Given Type2Message type2 = createMockType2Message(); String specialDomain = "TEST-DOMAIN_123"; String specialUser = "******@****.***";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0)