- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for test_specialCharacters (0.13 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
item.setNewInput("third"); assertEquals("third", item.toLineString()); assertTrue(item.isUpdated()); assertFalse(item.isDeleted()); } public void test_specialCharacters() { // Test with special characters String specialInput = "test@#$%^&*()_+-=[]{}|;':\",./<>?"; StopwordsItem item = new StopwordsItem(1, specialInput);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
item.setNewInput("third"); assertTrue(item.isUpdated()); assertFalse(item.isDeleted()); assertEquals("third", item.toLineString()); } public void test_specialCharacters() { // Test with special characters in input String specialInput = "test@#$%^&*()_+-=[]{}|;':\",./<>?"; ProtwordsItem item = new ProtwordsItem(1, specialInput);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10); assertEquals(2, result.size()); } // Test with special characters in mapping public void test_specialCharacters() throws Exception { writeTestFile("α,β => γ\n中,文 => 字\n"); PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10); assertEquals(2, result.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
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 String content = "test1\n" + "日本語\n" + "word with spaces\n" + "\ttab\tword\t\n"; // Write content to test file
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
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)