use of com.alibaba.fastjson.JSONException in project fastjson by alibaba.
the class JSONScannerTest_false method test_scan_false_2.
public void test_scan_false_2() throws Exception {
JSONException error = null;
try {
JSONScanner lexer = new JSONScanner("fzlse");
lexer.scanFalse();
} catch (JSONException e) {
error = e;
}
Assert.assertNotNull(error);
}
use of com.alibaba.fastjson.JSONException in project fastjson by alibaba.
the class JSONScannerTest_false method test_scan_false_3.
public void test_scan_false_3() throws Exception {
JSONException error = null;
try {
JSONScanner lexer = new JSONScanner("fazse");
lexer.scanFalse();
} catch (JSONException e) {
error = e;
}
Assert.assertNotNull(error);
}
use of com.alibaba.fastjson.JSONException in project fastjson by alibaba.
the class JSONScannerTest_false method test_scan_false_6.
public void test_scan_false_6() throws Exception {
JSONException error = null;
try {
JSONScanner lexer = new JSONScanner("false\"");
lexer.scanFalse();
} catch (JSONException e) {
error = e;
}
Assert.assertNotNull(error);
}
use of com.alibaba.fastjson.JSONException in project fastjson by alibaba.
the class JSONScannerTest_false method test_scan_false_4.
public void test_scan_false_4() throws Exception {
JSONException error = null;
try {
JSONScanner lexer = new JSONScanner("falze");
lexer.scanFalse();
} catch (JSONException e) {
error = e;
}
Assert.assertNotNull(error);
}
use of com.alibaba.fastjson.JSONException in project fastjson by alibaba.
the class JSONScannerTest_false method test_scan_false_6_1.
public void test_scan_false_6_1() throws Exception {
JSONException error = null;
try {
JSONScanner lexer = new JSONScanner("falsee");
lexer.scanFalse();
} catch (JSONException e) {
error = e;
}
Assert.assertNotNull(error);
}
Aggregations