()
| 1021 | |
| 1022 | #[test] |
| 1023 | fn test_context_should_continue() { |
| 1024 | let mut context = ApplyContext::with_defaults(); |
| 1025 | assert!(context.should_continue()); |
| 1026 | |
| 1027 | context.mark_failed("test"); |
| 1028 | assert!(!context.should_continue()); |
| 1029 | } |
| 1030 | |
| 1031 | #[test] |
| 1032 | fn test_context_exceeds_operation_limit() { |
nothing calls this directly
no test coverage detected