public class JSONScannerTest_int extends TestCase {
public void ftest_parse_long() throws Exception {
System.out.println(System.currentTimeMillis());
JSONScanner lexer = new JSONScanner("1293770846");
lexer.scanNumber();
Assert.assertEquals(new Integer(1293770846), (Integer) lexer.integerValue());
Assert.assertEquals(1293770846, lexer.intValue());
}
public void ftest_parse_long_1() throws Exception {