@@ -72,7 +72,7 @@ public void testTrailingDotInDecimal() throws Exception {
72
72
}
73
73
}
74
74
75
- public void testLeadingDotInDecimalAllowedAsync () throws Exception {
75
+ public void testLeadingDotInDecimalAllowedDataInput () throws Exception {
76
76
_testLeadingDotInDecimalAllowed (jsonFactory (), MODE_DATA_INPUT );
77
77
}
78
78
@@ -83,9 +83,10 @@ public void testLeadingDotInDecimalAllowedBytes() throws Exception {
83
83
84
84
public void testLeadingDotInDecimalAllowedReader () throws Exception {
85
85
_testLeadingDotInDecimalAllowed (jsonFactory (), MODE_READER );
86
+ // _testLeadingDotInDecimalAllowed(jsonFactory(), MODE_READER_THROTTLED);
86
87
}
87
88
88
- public void testTrailingDotInDecimalAllowedAsync () throws Exception {
89
+ public void testTrailingDotInDecimalAllowedDataInput () throws Exception {
89
90
_testTrailingDotInDecimalAllowed (jsonFactory (), MODE_DATA_INPUT );
90
91
}
91
92
@@ -96,6 +97,7 @@ public void testTrailingDotInDecimalAllowedBytes() throws Exception {
96
97
97
98
public void testTrailingDotInDecimalAllowedReader () throws Exception {
98
99
_testTrailingDotInDecimalAllowed (jsonFactory (), MODE_READER );
100
+ // _testTrailingDotInDecimalAllowed(jsonFactory(), MODE_READER_THROTTLED);
99
101
}
100
102
101
103
public void testLeadingPlusSignInDecimalAllowedDataInput () throws Exception {
@@ -109,6 +111,7 @@ public void testLeadingPlusSignInDecimalAllowedBytes() throws Exception {
109
111
110
112
public void testLeadingPlusSignInDecimalAllowedReader () throws Exception {
111
113
_testLeadingPlusSignInDecimalAllowed (jsonFactory (), MODE_READER );
114
+ // _testLeadingPlusSignInDecimalAllowed(jsonFactory(), MODE_READER_THROTTLED);
112
115
}
113
116
114
117
public void testLeadingDotInNegativeDecimalAllowedAsync () throws Exception {
@@ -122,6 +125,7 @@ public void testLeadingDotInNegativeDecimalAllowedBytes() throws Exception {
122
125
123
126
public void testLeadingDotInNegativeDecimalAllowedReader () throws Exception {
124
127
_testLeadingDotInNegativeDecimalAllowed (jsonFactory (), MODE_READER );
128
+ // _testLeadingDotInNegativeDecimalAllowed(jsonFactory(), MODE_READER_THROTTLED);
125
129
}
126
130
127
131
private void _testLeadingDotInDecimalAllowed (JsonFactory f , int mode ) throws Exception
0 commit comments