- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for test_constructor_withSpecialCharacters (2.21 sec)
-
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withSpecialCharacters() { // Test with special characters in message String message = "Search not supported: \n\t!@#$%^&*(){}[]|\\:;\"'<>,.?/~`";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
assertNotNull(exception); assertEquals("User is not found: null", exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withSpecialCharacters() { // Test with username containing special characters String username = "******@****.***"; FessUserNotFoundException exception = new FessUserNotFoundException(username);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
assertNotNull(exception); assertEquals("Not Found: Parent: ", exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withSpecialCharacters() { // Test with URLs containing special characters String parentUrl = "http://example.com/parent?query=test&id=123"; String url = "http://example.com/child#fragment";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
assertNull(param.getValues()[1]); assertEquals("value3", param.getValues()[2]); assertNull(param.getValues()[3]); } public void test_constructor_withSpecialCharacters() { // Test with special characters in name and values String name = "param-name_123!@#"; String[] values = { "value with spaces", "value@special#chars", "日本語" };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0)