()
| 700 | |
| 701 | #[test] |
| 702 | fn new_invocation_arg() -> errors::Result<()> { |
| 703 | let _jvm = create_tests_jvm()?; |
| 704 | let _ = InvocationArg::new(&"something".to_string(), "somethingelse"); |
| 705 | |
| 706 | Ok(()) |
| 707 | } |
| 708 | |
| 709 | #[test] |
| 710 | fn invocation_arg_try_from_basic_types() -> errors::Result<()> { |
nothing calls this directly
no test coverage detected