()
| 69 | use super::*; |
| 70 | #[test] |
| 71 | fn new_stack_is_empty() { |
| 72 | let stack = Stack::new(1024); |
| 73 | assert_eq!(stack.stack.len(), 0); |
| 74 | } |
| 75 | |
| 76 | #[test] |
| 77 | fn push_and_pop_on_stack() { |
nothing calls this directly
no outgoing calls
no test coverage detected