()
| 1926 | |
| 1927 | #[test] |
| 1928 | fn get_json_schema_internal_null() { |
| 1929 | let mut env = JVM.attach_current_thread().unwrap(); |
| 1930 | let null_str = JString::from(JObject::null()); |
| 1931 | let result = get_json_schema_internal(&mut env, null_str); |
| 1932 | assert!(result.is_err(), "Expected error on null input"); |
| 1933 | } |
| 1934 | |
| 1935 | #[test] |
| 1936 | fn get_json_schema_internal_invalid_input() { |
nothing calls this directly
no test coverage detected