- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for xtest_serialization (0.19 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
assertEquals("[Test]", defaultMap.get(FessEnv.MAIL_SUBJECT_TEST_PREFIX)); assertEquals("root@localhost", defaultMap.get(FessEnv.MAIL_RETURN_PATH)); } // Test serialization public void xtest_serialization() { // Verify that serialVersionUID is defined assertTrue(fessEnv instanceof java.io.Serializable); // Test that the SimpleImpl class can be instantiated
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/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/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/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/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/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/JobNotFoundExceptionTest.java
assertTrue(exception instanceof RuntimeException); assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } public void test_serialization() { // Test that the exception has serialVersionUID defined JobNotFoundException exception = new JobNotFoundException("test"); // Simply verify the exception can be created without issues
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
assertTrue(cause3 instanceof RuntimeException); assertEquals("Level 3 error", cause3.getMessage()); assertNull(cause3.getCause()); } public void test_serialization() throws Exception { // Test serialization and deserialization String message = "Serializable SSO exception"; Exception cause = new RuntimeException("Serializable cause");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/FunnelsTest.java
out.write(255); out.write(bytes); out.write(bytes, 1, 2); verify(sink).putByte((byte) 255); verify(sink).putBytes(bytes); verify(sink).putBytes(bytes, 1, 2); } public void testSerialization() { assertSame( Funnels.byteArrayFunnel(), SerializableTester.reserialize(Funnels.byteArrayFunnel())); assertSame(Funnels.integerFunnel(), SerializableTester.reserialize(Funnels.integerFunnel()));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 6K 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)