We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7fea62 commit 55b25adCopy full SHA for 55b25ad
fj-core/src/test/java/test/org/fugerit/java/core/io/TestObjectIO.java
@@ -22,5 +22,10 @@ public void testStringOk() throws IOException {
22
Assert.assertEquals( "a", test2 );
23
}
24
25
+ @Test
26
+ public void testKo() throws IOException {
27
+ SimpleValue val = new SimpleValue( "b" );
28
+ Assert.assertThrows( IOException.class, () -> ObjectIO.fullSerializationTest( val ) );
29
+ }
30
31
0 commit comments