public void ftest_parse_long_1() throws Exception {
System.out.println(System.currentTimeMillis());
JSONScanner lexer = new JSONScanner(Integer.toString(Integer.MAX_VALUE));
lexer.scanNumber();
Assert.assertEquals(new Integer(Integer.MAX_VALUE), (Integer) lexer.integerValue());
Assert.assertEquals(Integer.MAX_VALUE, lexer.intValue());
}
public void test_parse_long_2() throws Exception {
System.out.println(System.currentTimeMillis());