- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for testOf_serialization (0.33 sec)
-
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
public void testOf_last() { SortedSet<String> set = of("e", "f", "b", "d", "c"); assertEquals("f", set.last()); } @J2ktIncompatible @GwtIncompatible // SerializableTester public void testOf_serialization() { SortedSet<String> set = of("e", "f", "b", "d", "c"); SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); assertTrue(elementsEqual(set, copy));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 46.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_serialization() { // Test that the exception has serialVersionUID defined String message = "Serialization test"; SearchEngineClientException exception = new SearchEngineClientException(message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocListTest.java
assertTrue(result.contains("processingTime=500")); assertTrue(result.contains("elementData=[")); assertTrue(result.contains("id=1")); } public void test_serialization() { DocList docList = new DocList(); assertTrue(docList instanceof java.io.Serializable); } public void test_large_values() { DocList docList = new DocList();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
assertEquals("test_stackTrace", firstElement.getMethodName()); assertEquals(this.getClass().getName(), firstElement.getClassName()); } public void test_serialization() { // Test that the exception is serializable String message = "Serialization test"; LdapConfigurationException exception = new LdapConfigurationException(message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExpiredExceptionTest.java
assertTrue(e instanceof DictionaryExpiredException); } catch (Exception e) { fail("Should have caught as RuntimeException"); } } public void test_serialization() throws Exception { // Test that the exception is serializable DictionaryExpiredException original = new DictionaryExpiredException(); // Serialize
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java
assertTrue(caught.getMessage().contains("ServletException")); } catch (Exception e) { fail("Should have caught ServletRuntimeException"); } } public void test_serialization() { // Test that the serialVersionUID is properly defined // This test verifies that the class can be instantiated and has the serial version UID
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
foundTestMethod = true; break; } } assertTrue(foundTestMethod); } public void test_serialization() { // Test that the exception has serialVersionUID // This test verifies the exception is serializable String message = "Serialization test";
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/ScriptEngineExceptionTest.java
assertTrue(exception instanceof RuntimeException); assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } public void test_serialization() { // Test that the exception has the correct serialVersionUID field ScriptEngineException exception = new ScriptEngineException("Serialization test");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
assertEquals(innerCause, exception.getCause().getCause()); assertEquals("Invalid image format", exception.getCause().getCause().getMessage()); } public void test_serialization() { // Test that the exception has serialVersionUID ThumbnailGenerationException exception = new ThumbnailGenerationException("Test serialization");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
assertTrue(exception instanceof RuntimeException); assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } public void test_serialization() { // Test serialVersionUID exists ResultOffsetExceededException exception = new ResultOffsetExceededException("Test serialization");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.6K bytes - Viewed (0)