()
| 128 | |
| 129 | #[test] |
| 130 | fn parses_stack_spec() { |
| 131 | let spec: StackSpec = "16:64".parse().unwrap(); |
| 132 | let cfg = spec.into_stack_config(); |
| 133 | assert_eq!(cfg.initial_size, 16); |
| 134 | assert_eq!(cfg.max_size, 64); |
| 135 | assert!(cfg.dynamic); |
| 136 | } |
| 137 | |
| 138 | #[test] |
| 139 | fn builds_dynamic_stack_engine() { |
nothing calls this directly
no test coverage detected