()
| 769 | |
| 770 | #[test] |
| 771 | fn deploy_local_artifact() -> errors::Result<()> { |
| 772 | let jvm: Jvm = super::new_jvm(Vec::new(), Vec::new())?; |
| 773 | assert!(jvm |
| 774 | .deploy_artifact(&LocalJarArtifact::from("./non_existing.jar")) |
| 775 | .is_err()); |
| 776 | |
| 777 | Ok(()) |
| 778 | } |
| 779 | |
| 780 | struct UnknownArtifact {} |
| 781 |