Home
last modified time | relevance | path

Searched refs:BIG_NUM_LEN (Results 1 – 2 of 2) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/dos/
DHugeIntegerCoerceTest.java9 private final static int BIG_NUM_LEN = 199999; field in HugeIntegerCoerceTest
12 StringBuilder sb = new StringBuilder(BIG_NUM_LEN);
13 for (int i = 0; i < BIG_NUM_LEN; ++i) {
31 verifyException(e, "Integer with "+BIG_NUM_LEN+" digits"); in testMaliciousLongForEnum()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/
DNumberOverflowTest.java14 private final static int BIG_NUM_LEN = 199999; field in NumberOverflowTest
17 StringBuilder sb = new StringBuilder(BIG_NUM_LEN);
18 for (int i = 0; i < BIG_NUM_LEN; ++i) {
76 verifyException(e, "Integer with "+BIG_NUM_LEN+" digits"); in testMaliciousLongOverflow()
96 verifyException(e, "Integer with "+BIG_NUM_LEN+" digits"); in testMaliciousIntOverflow()