File tree 2 files changed +17
-1
lines changed
jr-objects/src/test/java/com/fasterxml/jackson/jr/failing
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ package com .fasterxml .jackson .jr .failing ;
2
+
3
+ import static org .junit .Assert .assertArrayEquals ;
4
+
5
+ import com .fasterxml .jackson .jr .ob .JSON ;
6
+ import com .fasterxml .jackson .jr .ob .TestBase ;
7
+
8
+ public class ReadIntArray7Test extends TestBase
9
+ {
10
+ public void testReadIntArray () throws Exception
11
+ {
12
+ final int [] input = new int [] { 1 , 2 , 3 };
13
+ String json = JSON .std .asString (input );
14
+ int [] result = JSON .std .beanFrom (int [].class , json );
15
+ assertArrayEquals (input , result );
16
+ }
17
+ }
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ No changes since 2.14
44
44
45
45
#102 : Missing module-info dependency from `jackson-jr-annotation-support`
46
46
#103 : Some artifacts missing `NOTICE`, `LICENSE` files
47
- - Java /JDK baseline raised to Java 8
48
47
49
48
2.14 .2 (28 - Jan - 2023 )
50
49
2.14 .1 (21 - Nov - 2022 )
You can’t perform that action at this time.
0 commit comments