public void test_optBoolean() {
Exception ex = null;
try {
JSONObject jObject = new JSONObject("{\"bool\":true}");
assertTrue(jObject.optBoolean("bool"));
assertTrue(jObject.optBoolean("bool2") == false);
assertTrue(jObject.optBoolean("bool2", true) == true);
} catch (Exception ex1) {
ex = ex1;