Run some Rust code while counting allocations.
Add as a dependency:
```toml [features] count-allocations = ["allocation-counter"]
[dependencies] allocation-counter = { version = "0", optional = true } ```
Since including the trait replaces the global memory allocator, you most likely want it gated behind a feature.
```rust
pub fn nomemoryallocations() { let allocations = allocationcounter::count(|| { codethatshouldnotallocatememory(); }); assert_eq!(allocations, 0); } ```
You can now assert that the function does not allocate memory by running tests with the necessary feature enabled:
sh
cargo test --features count-allocations