1
1
package com .fasterxml .jackson .databind .deser .jdk ;
2
2
3
- import com .fasterxml .jackson .databind .ObjectMapper ;
4
- import com .fasterxml .jackson .databind .json .JsonMapper ;
3
+ import java .math .BigDecimal ;
4
+
5
+ import org .junit .jupiter .api .Disabled ;
5
6
import org .junit .jupiter .api .Test ;
6
7
7
- import java .math .BigDecimal ;
8
+ import com .fasterxml .jackson .databind .ObjectMapper ;
9
+ import com .fasterxml .jackson .databind .json .JsonMapper ;
8
10
9
11
import static org .junit .jupiter .api .Assertions .assertEquals ;
10
12
@@ -23,6 +25,8 @@ static class BigDecimalWrapper {
23
25
24
26
private final ObjectMapper MAPPER = JsonMapper .builder ().build ();
25
27
28
+ // Disabled until [databind#4435 fixed]
29
+ @ Disabled
26
30
@ Test
27
31
public void testNumberStartingWithDot () throws Exception
28
32
{
@@ -31,6 +35,8 @@ public void testNumberStartingWithDot() throws Exception
31
35
assertEquals (new BigDecimal (num ), w .number );
32
36
}
33
37
38
+ // Disabled until [databind#4435 fixed]
39
+ @ Disabled
34
40
@ Test
35
41
public void testNumberStartingWithMinusDot () throws Exception
36
42
{
@@ -39,6 +45,8 @@ public void testNumberStartingWithMinusDot() throws Exception
39
45
assertEquals (new BigDecimal (num ), w .number );
40
46
}
41
47
48
+ // Disabled until [databind#4435 fixed]
49
+ @ Disabled
42
50
@ Test
43
51
public void testNumberStartingWithPlusDot () throws Exception
44
52
{
0 commit comments