()
| 623 | |
| 624 | #[test] |
| 625 | fn test_add_with_recursive_false() { |
| 626 | let add = Add::new().with_recursive(false); |
| 627 | assert!(!add.recursive); |
| 628 | assert!(add.no_recursive); |
| 629 | } |
| 630 | |
| 631 | #[test] |
| 632 | fn test_add_builder_chain() { |
nothing calls this directly
no test coverage detected