()
| 320 | #[test] |
| 321 | #[should_panic] |
| 322 | fn counter_with_bug() { |
| 323 | let t = CounterStateMachine { buggy: true }; |
| 324 | fixed_size_builder(512).run(|u| super::run(u, &t, 100)) |
| 325 | } |
| 326 | |
| 327 | /// Test the equivalent of: |
| 328 | /// |
nothing calls this directly
no test coverage detected