()
| 916 | |
| 917 | #[test] |
| 918 | fn test_builder_with_notes() { |
| 919 | let a = Attestation::builder("sess", make_agent()) |
| 920 | .notes("Session was interrupted and resumed") |
| 921 | .build(); |
| 922 | |
| 923 | assert_eq!( |
| 924 | a.notes.as_deref(), |
| 925 | Some("Session was interrupted and resumed") |
| 926 | ); |
| 927 | } |
| 928 | |
| 929 | #[test] |
| 930 | fn test_builder_changes_covered_vec() { |
nothing calls this directly
no test coverage detected