()
| 199 | |
| 200 | #[test] |
| 201 | fn phc_valid() { |
| 202 | let _result = Phc::builder() |
| 203 | .tsc_post(TscCount::new(10)) |
| 204 | .tsc_pre(TscCount::new(5)) // pre before post |
| 205 | .data(PhcData { |
| 206 | time: Instant::from_days(5), |
| 207 | clock_error_bound: Duration::from_micros(15), |
| 208 | }) |
| 209 | .build() |
| 210 | .unwrap(); |
| 211 | } |
| 212 | |
| 213 | #[rstest] |
| 214 | #[case::minimal_delays( |